程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> 服務器-nginx局域網無法訪問,請大家幫忙

服務器-nginx局域網無法訪問,請大家幫忙

編輯:編程綜合問答
nginx局域網無法訪問,請大家幫忙

我本地安裝了nginx,將靜態html文件發布上去後,在本地可以正常訪問(通過localhost),但是局域網內的其他主機卻無法訪問,前提:共用的同一個wifi,arp防火牆已關閉,nginx配置文件內容如下:
server {
listen 80;
server_name localhost;

    #charset koi8-r;

    #access_log  logs/host.access.log  main;

    location / {
       root   html5;
       # index  index.html index.htm;
    }

    #error_page  404              /404.html;

    # redirect server error pages to the static page /50x.html
    #
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   html;
    }

}
郁悶了好久了,局域網訪問不了,本地無法進行測試,求高手解答

最佳回答:


Linux 的話查下你的iptables
Windows 的話去看看你的Windows防火牆………手動加個例外

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved