這篇文章主要講解了“windows下Nginx多域名怎么配置”,文中的講解內(nèi)容簡(jiǎn)單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來(lái)研究和學(xué)習(xí)“windows下Nginx多域名怎么配置”吧!
創(chuàng)新互聯(lián)建站專(zhuān)注于企業(yè)網(wǎng)絡(luò)營(yíng)銷(xiāo)推廣、網(wǎng)站重做改版、和布克賽爾蒙古網(wǎng)站定制設(shè)計(jì)、自適應(yīng)品牌網(wǎng)站建設(shè)、H5頁(yè)面制作、商城網(wǎng)站建設(shè)、集團(tuán)公司官網(wǎng)建設(shè)、成都外貿(mào)網(wǎng)站制作、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁(yè)設(shè)計(jì)等建站業(yè)務(wù),價(jià)格優(yōu)惠性?xún)r(jià)比高,為和布克賽爾蒙古等各大城市提供網(wǎng)站開(kāi)發(fā)制作服務(wù)。
1. windows下安裝nginx的目錄結(jié)構(gòu)如下:
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:\windows\system32\drivers\etc 下修改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)址
感謝各位的閱讀,以上就是“windows下Nginx多域名怎么配置”的內(nèi)容了,經(jīng)過(guò)本文的學(xué)習(xí)后,相信大家對(duì)windows下Nginx多域名怎么配置這一問(wèn)題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!