1. Windows에 nginx를 설치하는 디렉토리 구조는 다음과 같습니다.
2. nginx-1.12.1 디렉토리에 있는 conf/nginx.conf의 내용
#user nobody; worker_processes 1; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65; server { listen 80 default_server; server_name localhost default_server; root html; location / { index index.html index.htm; } } include ../vhost/*.conf; }
3. 디렉터리:
server { listen 80; server_name www.a.com; root d:/test/; location / { index index.html index.htm; } }
4. vhost 디렉터리의 b_com.conf 콘텐츠:
server { listen 80; server_name www.b.com; root d:/test2/; location / { index index.html index.htm; } }
5. 로컬 디스크 D 드라이브 아래에 새 test 및 test2 디렉터리를 만들고, c에서 새 index.html 파일을 만듭니다. :windowssystem32driversetc 로컬 디스크 C 드라이브에 다음과 같이
127.0.0.1 www.a.com 127.0.0.1 www.b.com
7. cmd를 사용하여 nginx 설치 디렉터리에 들어가서
nginx.exe Start
nginx -t //Detect Syntax
nginx -s reload //Restart
를 실행합니다.nginx -s stop //Stop
8. 브라우저를 열고 URL을 입력하세요
.위 내용은 Windows에서 Nginx 여러 도메인 이름을 구성하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!