Nginx

用於本地開發的 nginx

  • May 25, 2011

我想使用 nginx 進行本地開發。這意味著我想阻止其他機器訪問我的 Web 伺服器,因此只能通過 localhost 訪問它。

在啟用站點/預設的伺服器設置下,我將程式碼更改為

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;
   }

我還需要做些什麼來防止第三方訪問我的網路伺服器嗎?

在 NGINX 方面,不,根據您希望它的安全程度,您可能還希望從除本地主機之外的任何 IP 阻止埠 80(或執行 NGINX 的任何埠),或使用非預設埠(在8000-10000 範圍)。

引用自:https://serverfault.com/questions/273845