/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>
为什么?