在nginx上设置子域名

时间:2009-07-23 21:21:12

标签: configuration nginx subdomain

我正在尝试在nginx上设置子域名。我的设置是在端口8080上运行并使用来自nginx的代理的Pylons应用程序。

我试图让子域工作的原因是最终设置dev和staging服务器。

这是我的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;
        }

    }

}

提前致谢!

1 个答案:

答案 0 :(得分:6)

我可以看到xxx.net& www.xxx.net域名,但是当我尝试使用dev.rentfox.net域时,我找不到服务器 - 你是否使用通配符或dev子域设置了DNS记录?

如果DNS设置正确,当您访问开发子域时,nginx的访问和错误日​​志是什么样的,他们是否有任何条目?