我已经创建了一个小应用程序,并按照以下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
服务器没有收听我的请求。我正在做什么错。任何帮助都会受到影响