56 Star 294 Fork 148

godo / godoOA

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
nginx.conf 1.31 KB
一键复制 编辑 原始数据 按行查看 历史
icanwallet 提交于 2023-07-27 17:54 . edit readme
server {
#listen 80;
listen 443 ssl;
#域名
server_name www.gdoa.top;
#证书地址改下面两行
ssl_certificate /data/key/gdoa.top_chain.crt;
ssl_certificate_key /data/key/gdoa.top_key.key;
ssl_session_cache shared:SSL:1m;
ssl_session_timeout 5m;
ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_prefer_server_ciphers on;
#程序地址
root /data/www;
set $node_port 8200;
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 ~ /admin/ {
etag on;
expires max;
}
location ~ /static/ {
etag on;
expires max;
}
}
NodeJS
1
https://gitee.com/ruitao_admin/gdoa.git
git@gitee.com:ruitao_admin/gdoa.git
ruitao_admin
gdoa
godoOA
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891