Nginx总是回退到默认配置

时间:2017-07-21 13:38:44

标签: django nginx

我的堆栈是django,gunicorn,nginx和主管在DigitalOcean的VPS上运行。

主管正在正确运行程序,但我总是得到NGINX欢迎页面。如果我删除默认的nginx配置文件,一切正常,我就会收到网站。

以下是我的自定义设置:

upstream maet_app_server {
  # fail_timeout=0 means we always retry an upstream even if it failed
  # to return a good HTTP response (in case the Unicorn master nukes a
  # single worker for timing out).

  server unix:/webapps/maet/run/gunicorn.sock fail_timeout=0;
}

server {

    listen   80;
    server_name maet.bg www.maet.com;

    client_max_body_size 4G;

    access_log /webapps/maet/logs/nginx-access.log;
    error_log /webapps/maet/logs/nginx-error.log;

    location /static/ {
        alias   /webapps/maet/website/static/;
    }

    location /media/ {
        alias   /webapps/maet/website/static/;
    }

    location / {
        # an HTTP header important enough to have its own Wikipedia entry:
        #   http://en.wikipedia.org/wiki/X-Forwarded-For
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

        # enable this if and only if you use HTTPS, this helps Rack
        # set the proper protocol for doing redirects:
        # proxy_set_header X-Forwarded-Proto https;

        # pass the Host: header from the client right along so redirects
        # can be set properly within the Rack application
        proxy_set_header Host $http_host;

        # we don't want nginx trying to do something clever with
        # redirects, we set the Host: header above already.
        proxy_redirect off;

        # set "proxy_buffering off" *only* for Rainbows! when doing
        # Comet/long-poll stuff.  It's also safe to set if you're
        # using only serving fast clients with Unicorn + nginx.
        # Otherwise you _want_ nginx to buffer responses to slow
        # clients, really.
        # proxy_buffering off;

        # Try to serve static files from nginx, no point in making an
        # *application* server like Unicorn/Rainbows! serve static files.
        if (!-f $request_filename) {
            proxy_pass http://maet_app_server;
            break;
        }
    }

    # Error pages
    error_page 500 502 503 504 /500.html;
    location = /500.html {
        root /webapps/maet/website/static/;
    }
}

如何更改它以使用此配置而不是默认配置?

我不想删除默认文件,因为我需要它来加密ssl。

0 个答案:

没有答案