1 Star 0 Fork 0

shangningAI / sn_skin_sns

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
nginx.conf 882 Bytes
一键复制 编辑 原始数据 按行查看 历史
e 提交于 2019-03-26 15:46 . add
server {
listen 80;
server_name example.com www.example.com;
root D:\Development\Nodejs\sn_skin_sns;
set $node_port 8360;
index index.js index.html index.htm;
if ( -f $request_filename/index.html ){
rewrite (.*) $1/index.html break;
}
if ( !-f $request_filename ){
rewrite (.*) /index.js;
}
location = /index.js {
proxy_http_version 1.1;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_set_header X-NginX-Proxy true;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_pass http://127.0.0.1:$node_port$request_uri;
proxy_redirect off;
}
location ~ /static/ {
etag on;
expires max;
}
}
1
https://gitee.com/shangningAI/sn_skin_sns.git
git@gitee.com:shangningAI/sn_skin_sns.git
shangningAI
sn_skin_sns
sn_skin_sns
master

搜索帮助