windows下Nginx多域名怎么配置

1. windows下安裝nginx的目錄結(jié)構(gòu)如下:

windows下Nginx多域名怎么配置

2. 在nginx-1.12.1目錄下conf/nginx.conf 內(nèi)容

#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. vhost 目錄下 a_com.conf 內(nèi)容:

server?{ ????listen????80; ????server_name?www.a.com; ????root??d:/test/; ????location?/?{ ??????index?index.html?index.htm; ????} }

4. vhost 目錄下 b_com.conf 內(nèi)容:

server?{ ????listen????80; ????server_name?www.b.com; ????root??d:/test2/; ????location?/?{ ??????index?index.html?index.htm; ????} }

5. 在本地磁盤(pán)d盤(pán)下 新建 test 和 test2目錄,并新建 index.html文件

6. 在本地磁盤(pán)c盤(pán)中c:windowssystem32driversetc 下修改hosts 如下

127.0.0.1????www.a.com 127.0.0.1????www.b.com

7. 用cmd進(jìn)入nginx安裝目錄下執(zhí)行

?   nginx.exe? 開(kāi)始   

  ? nginx -t? //檢測(cè)語(yǔ)法

  ? nginx -s reload? //重新啟動(dòng)

  ? nginx -s stop? //停止

8. 打開(kāi)瀏覽器輸入網(wǎng)址

? 版權(quán)聲明
THE END
喜歡就支持一下吧
點(diǎn)贊13 分享