nginx始终提供欢迎页面

时间:2015-05-24 18:44:29

标签: nginx

我正在尝试向Django服务器发出nginx代理请求,但它会一直显示nginx欢迎页面。

这是/etc/nginx/nginx.conf

worker_processes  4;

events {
    worker_connections  1024;
}

http {
    include       mime.types;
    default_type  application/octet-stream;

    sendfile       off;

    tcp_nopush     on;

    keepalive_timeout  65;

    gzip  on;
    gzip_disable "msie6";

    include /etc/nginx/sites-enabled/*;

    server {
        listen 8000 default_server;
        listen [::]:8000 default_server ipv6only=on;
    }
}

这里是/etc/nginx/sites-enabled/dotmancasite-enabled目录中唯一的文件):

server {
    server_name _;

    access_log off;

    location /media/ {
        alias /vagrant/media/;
    }

    location /static/ {
        alias /vagrant/static/;
    }

    location / {
        proxy_pass http://127.0.0.1:8001;
        proxy_set_header X-Forwarded-Host $server_name;
        proxy_set_header X-Real-IP $remote_addr;
        add_header P3P 'CP="ALL DSP COR PSAa PSDa OUR NOR ONL UNI COM NAV"';
    }
}

因此,如果没有服务器在端口8001上运行,我预计会出现错误的网关错误。相反,我看到默认的“欢迎使用nginx!”

运行sudo nginx -t会提供以下内容:

nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful

此外,sudo service nginx restart似乎无能为力。

我的nginx版本是1.4.6,它在Ubuntu Trusty上运行。

1 个答案:

答案 0 :(得分:0)

因此,从server移除/etc/nginx/nginx.conf部分并将listen指令添加到server中的/etc/nginx/sites-enabled/dotmanca部分似乎有效。

或者至少,它允许sudo nginx -s reload解决问题。