Nginx 가상 호스트 설정 의 세 가지 방식 (3) (도 메 인 이름 기반)

18588 단어 Nginx
3. Nginx 도 메 인 이름 기반 가상 호스트 설정
도 메 인 이름 기반 가상 호스트 설정 을 사용 하 는 것 은 비교적 유행 하 는 방식 으로 같은 IP 에 여러 도 메 인 이름 을 설정 하고 80 포트 를 통 해 접근 할 수 있 습 니 다.
3.1 서버 의 IP 주소 가 192.168.2.155 라 고 가정
[root@localhost ~]# ifconfig ens33:5 192.168.2.155/24 up
[root@localhost ~]# ifconfig
ens33:5: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 192.168.2.155  netmask 255.255.255.0  broadcast 192.168.2.255
        ether 00:0c:29:16:90:ae  txqueuelen 1000  (Ethernet)

3.2 192.168.2.155 에 대응 하 는 도 메 인 이름 은 다음 과 같 습 니 다. 호스트 의 host 파일 을 설정 하면 테스트 하기 쉽 습 니 다.
[root@localhost ~]# vim /etc/hosts
[root@localhost ~]# cat /etc/hosts|grep 192.168.2.155
192.168.2.155 www.oa.com
192.168.2.155 www.bbs.com
192.168.2.155 www.test.com

3.3 가상 호스트 가 웹 페이지 를 저장 하 는 루트 디 렉 터 리 를 만 들 고 첫 페이지 파일 index. html 를 만 듭 니 다.
[root@localhost ~]# cd /data/www/
[root@localhost www]# mkdir www.oa.com
[root@localhost www]# mkdir www.bbs.com
[root@localhost www]# mkdir www.test.com
[root@localhost www]# echo www.oa.com > www.oa.com/index.html
[root@localhost www]# echo www.bbs.com > www.bbs.com/index.html
[root@localhost www]# echo www.test.com > www.test.com/index.html

3.4 nginx. conf 를 수정 하여 가상 호스트 설정 파일 을 주 파일 에 포함 시 킵 니 다.
[root@localhost /]# cd /usr/local/nginx/conf/
[root@localhost conf]# ls
fastcgi.conf          fastcgi_params          koi-utf  mime.types          nginx.conf          scgi_params          uwsgi_params          win-utf
fastcgi.conf.default  fastcgi_params.default  koi-win  mime.types.default  nginx.conf.default  scgi_params.default  uwsgi_params.default
[root@localhost conf]# vim nginx.conf

nginx. conf 파일 끝 에 다음 설정 을 추가 합 니 다.
#  http                “#”
    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';

#            “}”        ,    
include vhost/*.conf

3.5 각 도 메 인 이름 의 프로필 편집 (각 가상 호스트 의 프로필)
[root@localhost conf]# cd vhost/
[root@localhost vhost]# cat www.oa.com.conf
    server {
        listen       192.168.2.155:80;
        server_name  www.oa.com;

        access_log   /data/logs/www.oa.com.log main;
        error_log    /data/logs/www.oa.com.error.log;

        location / {
            root   /data/www/www.oa.com;
            index  index.html index.htm;
        }
    }

[root@localhost vhost]# cat www.bbs.com.conf
    server {
        listen       192.168.2.155:80;
        server_name  www.bbs.com;

        access_log   /data/logs/www.bbs.com.log main;
        error_log    /data/logs/www.bbs.com.error.log;

        location / {
            root   /data/www/www.bbs.com;
            index  index.html index.htm;
        }
    }

[root@localhost vhost]# cat www.test.com.conf
    server {
        listen       192.168.2.155:80;
        server_name  www.test.com;

        access_log   /data/logs/www.test.com.log main;
        error_log    /data/logs/www.test.com.error.log;

        location / {
            root   /data/www/www.test.com;
            index  index.html index.htm;
        }
    }

[root@localhost vhost]# cat /data/www/www.oa.com/index.html
www.oa.com
[root@localhost vhost]# cat /data/www/www.bbs.com/index.html
www.bbs.com
[root@localhost vhost]# cat /data/www/www.test.com/index.html
www.test.com

3.6 로그 파일 을 만 듭 니 다. 그렇지 않 으 면 nginx 를 시작 할 수 없습니다.
[root@localhost /]# mkdir -p /data/logs
[root@localhost /]# touch /data/logs/www.oa.com.log
[root@localhost /]# touch /data/logs/www.oa.com.error.log
[root@localhost /]# touch /data/logs/www.bbs.com.log
[root@localhost /]# touch /data/logs/www.bbs.com.error.log
[root@localhost /]# touch /data/logs/www.test.com.log
[root@localhost /]# touch /data/logs/www.test.com.error.log
[root@localhost /]# ls /data/logs/
www.oa.com.error.log  www.bbs.com.error.log  www.test.com.error.log
www.oa.com.log        www.bbs.com.log        www.test.com.log

3.7 설정 파일 을 테스트 한 다음 nginx 를 시작 합 니 다.
[root@localhost /]# cd /usr/local/nginx/sbin/
[root@localhost 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@localhost sbin]# ./nginx

3.8 테스트 파일
[root@localhost vhost]# curl http://www.oa.com
www.oa.com
[root@localhost vhost]# curl http://www.bbs.com
www.bbs.com
[root@localhost vhost]# curl http://www.test.com
www.test.com

질문
1. 최종 테스트 시 발생 하 는 문제
[root@localhost ~]# curl http://www.oa.com
curl: (7) Failed connect to www.oa.com:80;     

해결 방법: Nginx 가 해당 포트 를 감청 하고 있 는 지 확인 합 니 다.
[root@localhost ~]# netstat -lnt
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address           Foreign Address         State
tcp        0      0 0.0.0.0:111             0.0.0.0:*               LISTEN
tcp        0      0 192.168.2.155:80        0.0.0.0:*               LISTEN
tcp        0      0 0.0.0.0:8080            0.0.0.0:*               LISTEN
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN
tcp        0      0 127.0.0.1:25            0.0.0.0:*               LISTEN
tcp6       0      0 :::111                  :::*                    LISTEN
tcp6       0      0 :::22                   :::*                    LISTEN
tcp6       0      0 :::23                   :::*                    LISTEN
tcp6       0      0 ::1:25                  :::*                    LISTEN

1. 가상 호스트 파일 을 설정 할 때 감청 하 는 IP 주 소 를 추가 해 야 합 니 다. 모든 가상 호스트 설정 파일 이 똑 같 습 니 다.
 listen       192.168.2.155:80;

2 、 설정 완료 후 서버 를 다시 시작 합 니 다

좋은 웹페이지 즐겨찾기