Nginx在多个端口部署应用程序

时间:2015-12-18 03:00:43

标签: django nginx

我打算在2个nginx服务器端口部署我的django应用程序。端口80正在工作,但端口99无法正常工作。

这是我的配置。

端口99配置

upstream app_server_1 {
        # For a TCP configuration:
        server 127.0.0.1:8888 fail_timeout=0;
    }
# configuration of the server
server {
    #add_header HTTP_X_FORWARDED_PROTO https;
    # the port your site will be served on
    listen      99 default_server;

    charset     utf-8;
    server_name 52.23.184.237;
    # SSL configs

    #listen 443 default ssl;
    #ssl_certificate /etc/ssl/tmatch.crt;
    #ssl_certificate_key /etc/ssl/tmatch.key;

    # max upload size
    client_max_body_size 75M;   # adjust to taste

    # Django media
    location /media  {
        alias /var/www/tmatch/media;  # your Django project's media files - amend as required
    }

    location /static {
        alias /var/www/tmatch/static; # your Django project's static files - amend as required
    }

    location / {
            # checks for static file, if not found proxy to app
            try_files $uri @proxy_to_app;
        }

        location @proxy_to_app {
            proxy_set_header X-Forwarded-Protocol $scheme;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
            proxy_set_header Host $http_host;
            proxy_redirect off;

        proxy_pass   http://app_server_1;
    }

端口80配置

upstream app_server {
        # For a TCP configuration:
        server 127.0.0.1:8000 fail_timeout=0;
    }
# configuration of the server
server {
    #add_header HTTP_X_FORWARDED_PROTO https;
    # the port your site will be served on
    listen      80 default_server;

    charset     utf-8;
    server_name 52.23.184.237;
    # SSL configs

    #listen 443 default ssl;
    #ssl_certificate /etc/ssl/tmatch.crt;
    #ssl_certificate_key /etc/ssl/tmatch.key;

    # max upload size
    client_max_body_size 75M;   # adjust to taste

    # Django media
    location /media  {
        alias /var/www/tmatch/media;  # your Django project's media files - amend as required
    }

    location /static {
        alias /var/www/tmatch/static; # your Django project's static files - amend as required
    }

    location / {
            # checks for static file, if not found proxy to app
            try_files $uri @proxy_to_app;
        }

        location @proxy_to_app {
            proxy_set_header X-Forwarded-Protocol $scheme;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
            proxy_set_header Host $http_host;
            proxy_redirect off;

        proxy_pass   http://app_server;
    }

1 个答案:

答案 0 :(得分:0)

有任何错误吗?

我遇到多个default_server

的问题

尝试取出其中一个,为我工作