vhost nginx无法使用www

时间:2014-08-23 12:50:35

标签: nginx vhosts

嗨伙计们, 我在/etc/nginx/conf.d中有nginx的配置:

我-site.com.conf

server {
    listen 80;

    server_name www.my-site.com my-site.com;

    location / {
        proxy_pass http://localhost:3000;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection 'upgrade';
        proxy_set_header Host $host;
        proxy_cache_bypass $http_upgrade;
    }
}

我的应用是在node.js中制作的。 因此,如果我尝试连接到my-site.com它的工作,但www.my-site.com不起作用,我会收到错误:&#34;网页不可用&#34;。< / p>

为什么?

0 个答案:

没有答案