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。我在本地主机的 9000 端口上启动并运行了 Grunt 服务器。每次尝试加载 localhost:9001 时,我都会收到“504 Gateway Time-out”。
我需要添加一些东西才能在 Windows 上运行它吗?和防火墙有关系吗?
请提出解决方案