13

nginx でサブドメインを設定しようとしています。私のセットアップは、ポート 8080 で実行され、nginx のプロキシを使用する Pylons アプリです。

サブドメインを機能させようとしている理由は、最終的に開発サーバーとステージング サーバーをセットアップするためです。

ここに私のnginx.confファイルがあります:

worker_processes  2;

events {
    worker_connections  1024;
}


http {
    include     mime.types;
    default_type    application/octet-stream;
    access_log  logs/rentfox.access.log;
    error_log   logs/rentfox.error.log;
    gzip        on;
    sendfile    on;
    tcp_nopush  on;
    tcp_nodelay on;
    keepalive_timeout   75 20;

    server {
        listen       80;
        server_name  xxx.net;

        location / {            
            include /usr/local/nginx/conf/proxy.conf;
            proxy_pass http://127.0.0.1:8080;
            proxy_redirect default;
            root /var/apps/xxx/xxx/public/;
        }

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

    }
    server {
        listen       80;
        server_name  dev.xxx.net;

        location / {            
            include /usr/local/nginx/conf/proxy.conf;
            proxy_pass http://127.0.0.1:8080;
            proxy_redirect default;
            root /var/apps/xxx/xxx/public/;
        }

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

    }

}

前もって感謝します!

4

1 に答える 1