> 백엔드 개발 > PHP 튜토리얼 > nginx 가상 호스트 별칭 구성

nginx 가상 호스트 별칭 구성

WBOY
풀어 주다: 2016-07-28 08:29:27
원래의
1092명이 탐색했습니다.

1、修改hosts文件
[root@slave html]# vi /etc/hosts
127.0.0.1   localhost localhost.localdomain localhost4 localhost4.localdomain4
::1         localhost localhost.localdomain localhost6 localhost6.localdomain6
192.168.0.203 www.wolf.com bbs.wolf.com blog.wolf.com   Wolf.com
2、修改配置文件
[root@slave nginx]# vi nginx.conf
worker_processes 1;
이벤트 {
    작업자 연결  1024;
}
http {
    include       mime.types;
    default_type  application/octet-stream;
    sendfile        on;
    keepalive _시간 초과 65;
    서버 {
        듣기       80;
        server_name  www.wolf.com Wolf.com;
        위치 / {
            루트   html/www;
            색인 index.html index.htm;
        }
    }
    서버 {
        듣기       80;
        server_name  bbs.wolf.com;
        위치 / {
            루트  html/bbs;
            색인  index.html 색인 .htm;
        }
    }
    서버 {
        듣기       80;
        server_name  blog.wolf.com;
        위치 / {
           루트   html/blog;
            색인 index.html index.htm;
        }
    }
"nginx.conf" 38L, 751C 작성
3、语法检查
[root@slave nginx]# /usr/sbin/nginx -t
nginx: 구성 파일 /etc/nginx/nginx.conf 구문이 정상입니다.
nginx: 구성 파일 /etc/nginx/nginx.conf 테스트가 성공했습니다
4, 重启服务
[ root@slave nginx]# /usr/sbin/nginx -s reload
5、测试
[root@slave nginx]# ping Wolf.com
PING www.wolf.com (192.168.0.203) 56 (84)바이트의 데이터.
www.wolf.com(192.168.0.203)에서 64바이트: icmp_seq=1 ttl=64 time=0.097 ms
www.wolf.com(192.168.0.203)에서 64바이트 : icmp_seq=2 ttl=64 시간=0.039 ms
[root@slave nginx]# 컬 Wolf.com
http://www.wolf.com
[root@slave nginx]# 컬 www. Wolf.com
http://www.wolf.com

以上就介绍了 nginx虚拟主机别name配置, 包括了方face的内容, 希望对PHP教程有兴趣的朋友有所帮助.

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿