Nginx 가상 호스트 3 (포트, 도 메 인 이름 기반)

1040 단어 가상 호스트linux
도 메 인 이름 기반 가상 호스트: 도 메 인 이름 이 다른 IP
포트 기반 가상 호스트: 도 메 인 이름, IP 를 사용 하지 않 고 서로 다른 TCP 포트 번 호 를 사용 합 니 다.
IP 주소 기반 가상 호스트: 도 메 인 이름 이 다른 IP (네트워크 인 터 페 이 스 를 추가 해 야 하 며 광범 위 하 게 응용 되 지 않 음)
IP 주 소 를 기반 으로 하 는 가상 호스트 는 네트워크 인 터 페 이 스 를 추가 해 야 하기 때문에 도 메 인 이름 을 기반 으로 하 는 가상 호스트 와 포트 기반 가상 호스트 만 조작 소개 합 니 다.
1 주 Nginx 포트 기반 가상 호스트
[root@localhost ~]# yum -y install epel-release  
[root@localhost ~]# yum -y install nginx
[root@localhost ~]# mkdir -pv  /usr/share/nginx/html/hya
[root@localhost ~]# echo "welcome to hya" > /usr/share/nginx/html/hya/index.html
[root@localhost ~]# vim /etc/nginx/nginx.conf
    server {

        listen       8080;
        server_name www.hya.com;
        location / {
                root   /usr/share/nginx/html/hya;
                index  index.html index.htm;
         }
        }
[root@localhost nginx]# systemctl  restart nginx
[root@localhost nginx]# curl 192.168.253.130:8080
welcome to hya

 2. Nginx 도 메 인 이름 기반 가상 호스트 (이상 설정 기반)
 위 와 같이 설정

좋은 웹페이지 즐겨찾기