node-nginx二级域名添加配置
Posted 编程是我的初恋
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了node-nginx二级域名添加配置相关的知识,希望对你有一定的参考价值。
首先在阿里云配置解析域名
指向端口为3200的nodejs服务,在nginx/conf.d下增加文件chat.conf,内容如下:
server {
listen 80;
server_name www.chat.sanjiadian.net chat.sanjiadian.net;
location / {
proxy_pass http://127.0.0.1:3200;
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;
}
}
注意nginx/nginx.conf文件中的http下包含:include /etc/nginx/conf.d/*.conf;实际根据自己的nginx安装目录
重启nginx
以上是关于node-nginx二级域名添加配置的主要内容,如果未能解决你的问题,请参考以下文章