Nginx 가상 호스트 설정 의 세 가지 방식 (하나) (IP 기반)

20842 단어 Nginx
Nginx 설정 가상 호스트 지원 3 가지 방식: IP 기반 가상 호스트 설정, 포트 기반 가상 호스트 설정, 도 메 인 이름 기반 가상 호스트 설정.
1. IP 기반 가상 호스트 설정
같은 서버 에 여러 개의 IP 가 있다 면 IP 기반 가상 호스트 설정 을 사용 하여 서로 다른 서 비 스 를 서로 다른 IP 에 연결 할 수 있 습 니 다.
1.1 서버 의 IP 주소 가 192.168.2.150 이 라 고 가정 하면 먼저 ifconfig 를 사용 하여 같은 네트워크 인터페이스 에 다른 3 개의 IP 를 연결 합 니 다.
[root@localhost ~]# ifconfig ens33:1 192.168.2.151/24 up
[root@localhost ~]# ifconfig ens33:2 192.168.2.152/24 up
[root@localhost ~]# ifconfig ens33:3 192.168.2.153/24 up
[root@localhost ~]# ifconfig
ens33: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 192.168.2.106  netmask 255.255.255.0  broadcast 192.168.2.255
        inet6 fe80::2a8d:be6:a4a8:ea0  prefixlen 64  scopeid 0x20
        ether 00:0c:29:16:90:ae  txqueuelen 1000  (Ethernet)
        RX packets 1220  bytes 87955 (85.8 KiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 206  bytes 23755 (23.1 KiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

ens33:1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 192.168.2.151  netmask 255.255.255.0  broadcast 192.168.2.255
        ether 00:0c:29:16:90:ae  txqueuelen 1000  (Ethernet)

ens33:2: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 192.168.2.152  netmask 255.255.255.0  broadcast 192.168.2.255
        ether 00:0c:29:16:90:ae  txqueuelen 1000  (Ethernet)

ens33:3: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 192.168.2.153  netmask 255.255.255.0  broadcast 192.168.2.255
        ether 00:0c:29:16:90:ae  txqueuelen 1000  (Ethernet)

lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
        inet 127.0.0.1  netmask 255.0.0.0
        inet6 ::1  prefixlen 128  scopeid 0x10
        loop  txqueuelen 1  (Local Loopback)
        RX packets 72  bytes 6252 (6.1 KiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 72  bytes 6252 (6.1 KiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

1.23 개의 IP 에 대응 하 는 도 메 인 이름 은 다음 과 같 습 니 다. 호스트 의 host 파일 을 설정 하면 테스트 하기 쉽 습 니 다.
[root@localhost ~]# vim /etc/hosts
[root@localhost ~]# cat /etc/hosts
127.0.0.1   localhost localhost.localdomain localhost4 localhost4.localdomain4
::1         localhost localhost.localdomain localhost6 localhost6.localdomain6
192.168.2.151 www.test151.com
192.168.2.152 www.test152.com
192.168.2.153 www.test153.com

DNS 폴 링 을 실현 하 는 상황 을 모 의 할 수 있다.
첨부: hosts 파일 을 설정 한 후 다음 명령 을 실행 해 야 합 니 다.
1. windows 에서 cmd 를 내 려 명령 행 에 들 어가 기
C:\Users\1234>ipconfig /flushdns

Windows IP   

      DNS     。

1.3 가상 호스트 가 웹 페이지 를 저장 하 는 루트 디 렉 터 리 를 만 들 고 첫 페이지 파일 index. html 를 만 듭 니 다.
[root@localhost /]# mkdir -p /data/www
[root@localhost /]# cd /data/www
[root@localhost www]# mkdir 151
[root@localhost www]# mkdir 152
[root@localhost www]# mkdir 153
[root@localhost www]# echo "192.168.2.151" > 151/index.html
[root@localhost www]# echo "192.168.2.152" > 152/index.html
[root@localhost www]# echo "192.168.2.153" > 153/index.html
[root@localhost www]# ls
151  152  153

1.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;
}

1.5 각 IP 의 프로필 편집 (각 가상 호스트 의 프로필)
[root@localhost conf]# mkdir -p vhost
[root@localhost conf]# cd vhost/
[root@localhost vhost]# cat www.test151.conf
    server {
        listen       192.168.2.151:80;
        #         ,                
        #server_name  www.test.com;

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

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

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

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

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

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

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

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

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

1.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

1.8 테스트 파일
[root@localhost sbin]# curl www.test151.com
192.168.2.151
[root@localhost sbin]# curl www.test152.com
192.168.2.152
[root@localhost sbin]# curl www.test153.com
192.168.2.153

첨부: 설정 과정 에서 발생 한 문제
1. 설정 파일 을 테스트 할 때 발생 하 는 문제
[root@localhost sbin]# ./nginx -t
nginx: [emerg] unexpected "}" in /usr/local/nginx/conf/nginx.conf:122
nginx: configuration file /usr/local/nginx/conf/nginx.conf test failed

해결 방법: 아래 문장 에 점 수 를 붙 이 는 것 을 잊어버리다
include vhost/*.conf;

2. curl www. test *. com 을 사용 하여 테스트 할 때 항상 같은 결 과 를 방문 합 니 다.
해결 방법: IP 주 소 를 server 에 쓰 지 마 세 요.name 뒤에, servername 뒤에 도 메 인 이름 만 추가 할 수 있 습 니 다.

좋은 웹페이지 즐겨찾기