无法设置nginx服务器(端口转发)

时间:2013-10-06 16:31:33

标签: python django nginx linksys

我正在使用django和nginx以及gunicorn来设置我的应用程序。

当我进行端口转发80 ----> 80并转到我的IP它有效。 当我使用“德国之神”匿名程序时,它没有回应。 所以我的意思是,当我从计算机上取自己的ip时,程序运行正常。

当我从外面做同样的事情时,我没有回应。我以为我的互联网服务提供商阻止了80端口。

我尝试做的是为8001设置端口转发----> 80但仍然无效。

这就是nginx配置文件。

server {
    listen 80;

    access_log /var/www/shop/00/access.log;
    error_log /var/www/shop/00/error.log;

    location /static/ {
        alias /var/www/shop/00/static/;
    }
    location / {
        proxy_pass http://127.0.0.1:8888;
    }
}

这就是nginx配置文件。

bind = u"127.0.0.1:8888"
logfile = u"/var/www/shop/00/gunicorn.log"
workers = 3

我的端口转发是这样的: enter image description here

提前致谢。

0 个答案:

没有答案