0
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
server {
listen 0.0.0.0:9001;
server_name localhost;
location/{
proxy_pass http://0.0.0.0:9000;
}
}
}
我在Windows 7上運行NGINX。我的Grunt服務器已啓動並運行在本地主機上的9000端口上。每次嘗試加載localhost:9001時,都會收到「504網關超時」。NGINX:504網關超時
我需要添加一些東西才能在Windows上運行它嗎?有什麼與防火牆有關的嗎?
請建議解決方案