NGINX:504网关超时

时间:2013-04-10 13:08:31

标签: nginx timeout gateway

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服务器并在我的localhost上运行9000端口。每次我尝试加载localhost:9001时都会收到“504 Gateway Time-out”。

我是否需要添加一些内容才能在Windows上运行它?与防火墙有什么关系吗?

请建议解决方案

1 个答案:

答案 0 :(得分:0)

地址0.0.0.0与localhost不同。将地址更改为127.0.0.1将解决问题。

另见http://en.m.wikipedia.org/wiki/0.0.0.0

  

在Internet协议版本4中,地址0.0.0.0是一个不可路由的元地址,用于指定无效,未知或不适用的目标。为无效的数据提供特殊含义的是带内信令的应用。