我本地安裝了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防火牆………手動加個例外