为什么我的nginx(engine-x)没有听我的请求。

时间:2014-05-26 11:51:42

标签: python nginx gunicorn

我已经创建了一个小应用程序,并按照以下URL提供的说明运行

http://agiliq.com/blog/2013/08/minimal-nginx-and-gunicorn-configuration-for-djang/

我在example目录中创建了一个/iec/nginx/sites-enabled文件。我的示例文件包含以下代码

server {
listen localhost:8000;

location / {
    proxy_pass http://127.0.0.1:8001;
}

location /static/ {
    autoindex on;
    alias /home/mulagala/nginx_example/mysite/static/;
}
}

但是当我尝试连接localhost:8000时,我收到错误无法连接。为什么我的nginx服务器没有收听我的请求。我正在做什么错。任何帮助都会受到影响

0 个答案:

没有答案