我想使用Nginx进行本地开发.这意味着我想阻止其他机器访问我的Web服务器,因此只能通过localhost访问它.
在sites-enabled / default中的服务器设置下,我将代码更改为
location / {
# First attempt to serve request as file,then
# as directory,then fall back to index.html
allow 127.0.0.1;
deny all;
try_files $uri $uri/ /index.html;
}
我还需要做些什么来阻止第三方访问我的网络服务器吗?
最佳答案
原文链接:https://www.f2er.com/nginx/435493.html