nginx 가상 호스트 기반 도 메 인 이름 설정

nginx 설치
1: nginx 가상 호스트, 같은 포트 80, 여러 개의 다른 도 메 인 이름 을 설정 합 니 다.nginx 기본 주 프로필 내용 은 다음 과 같 습 니 다.
[root@zxl-nginx conf]# cat nginx.conf
user  nginx;
worker_processes  1;
error_log  logs/error.log;
pid        logs/nginx.pid;
events {
    worker_connections  1024;
}
http {
    include       mime.types;
    default_type  application/octet-stream;
    sendfile        on;
    keepalive_timeout  65;
    gzip  on;
    server {
        listen       80;
        server_name  localhost;
        location / {
            root   html;
            index  index.html index.htm;
        }
        }
include ./conf.d/*.conf; //                      。
}

2: 같은 포트 80 을 사용 하고 도 메 인 이름 에 접근 해 야 합 니 다.
  www.zxl.com      www.zxl.com
  www.bbs.com     www.bbs.com

www. zxl. com 가상 호스트 파일 설정
nginx 메 인 프로필 디 렉 터 리 에 하위 디 렉 터 리 를 만 들 면 참조 하기 편리 합 니 다.
[root@zxl-nginx conf]# mkdir conf.d

zxl. com. conf 프로필 내용 은 다음 과 같 습 니 다.
[root@zxl-nginx conf.d]# cat zxl.com.conf 
server {
listen 80;
server_name www.zxl.com zxl.com;
location / {
root /data/zxl;
index index.html index.htm;
access_log  logs/zxl.access.log;
error_log  logs/zxl.error.log;
 }
}

bbs. com. conf 프로필 내용 은 다음 과 같 습 니 다.
[root@zxl-nginx conf.d]# cat bbs.com.conf 
server {
listen 80;
server_name www.bbs.com bbs.com;
location / {
root /data/bbs;
index index.html index.htm;
access_log  logs/bbs.access.log;
error_log  logs/bbs.error.log;
 }
}

www. zxl. com 과 www. bbs. com 방문 디 렉 터 리 파일 만 들 기
[root@zxl-nginx ~]# ls -ld /data/{zxl,bbs}
drwxr-xr-x 2 root root 4096 Dec 18 10:08 /data/bbs
drwxr-xr-x 2 root root 4096 Dec 18 12:36 /data/zxl

bbs 와 zxl 디 렉 터 리 아래 파일 에 해당 하 는 내용 은 다음 과 같 습 니 다.
[root@zxl-nginx ~]# cat /data/zxl/index.html 
<h1>
This is a site www.zxl.com test!
</h1>
[root@zxl-nginx ~]# cat /data/bbs/index.html 
<h1>
This is a site www.bbs.com test!
</h1>

nginx 문법 을 검사 하여 nginx 관련 프로필 에 문제 가 있 는 지 확인 합 니 다. nginx 는 프로필 문법 이 좋 은 지 확인 합 니 다!
OK 와 is successful 이 나 오 는 게 맞습니다.
[root@zxl-nginx ~]# /usr/local/nginx/sbin/nginx -t
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful

시작 nginx
[root@zxl-nginx ~]# /usr/local/nginx/sbin/nginx 
[root@zxl-nginx ~]# lsof -i:80
COMMAND  PID  USER   FD   TYPE DEVICE SIZE/OFF NODE NAME
nginx   3476  root   10u  IPv4  15998      0t0  TCP *:http (LISTEN)
nginx   3477 nginx   10u  IPv4  15998      0t0  TCP *:http (LISTEN)

호스트 파일 설정
[root@zxl-nginx ~]# cat /etc/hosts
127.0.0.1   localhost localhost.localdomain localhost4 localhost4.localdomain4
::1         localhost localhost.localdomain localhost6 localhost6.localdomain6
127.0.0.1 www.zxl.com zxl.com
127.0.0.1 www.bbs.com bbs.com

테스트 방문 www. zxl. com 과 www. bbs. com 결 과 는 다음 과 같다.
[root@zxl-nginx ~]# elinks http://www.zxl.com --dump
                        This is a site www.zxl.com test!
[root@zxl-nginx ~]# elinks http://www.bbs.com --dump
                        This is a site www.bbs.com test!

좋은 웹페이지 즐겨찾기