1 Star 0 Fork 12

Devil/easyink_Sidebar

forked from lianluoyi/easyink_Sidebar 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
nginx.conf 1.23 KB
一键复制 编辑 原始数据 按行查看 历史
zcl 提交于 2023-11-03 11:07 . V1.34.0版本更新
gzip on;
gzip_min_length 100k;
gzip_buffers 4 16k;
gzip_http_version 1.0;
gzip_comp_level 6; #压缩等级,号量不多并发小的客户可以使用6,号量多并发高的客户使用1
gzip_types text/plain application/x-javascript text/css application/xml text/javascript application/x-httpd-php application/javascript;
gzip_disable "MSIE [1-6]\.";
upstream api{
server wecomscrm:8090 weight=1 fail_timeout=2s max_fails=2;
}
# lockscrm 第三方SCRM系统 后端地址 8090 :后端服务地址 具体端口号需要自行修改
upstream lock{
server lockscrm:8090 weight=1 fail_timeout=2s max_fails=2;
}
server {
listen 80;
server_name 127.0.0.1;
location / {
root /app/mobile/;
index index.html index.htm;
}
location ~/WW_verify* {
root /app/mobile/verfile/;
}
location /api/ {
proxy_pass http://api/;
proxy_http_version 1.1;
index index.html index.htm;
}
location /lock/ {
proxy_pass http://lock/;
proxy_http_version 1.1;
}
location /profile {
proxy_pass http://api;
proxy_http_version 1.1;
proxy_connect_timeout 1;
proxy_send_timeout 30;
proxy_read_timeout 60;
proxy_buffering off;
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/dongaifeng/easyink_Sidebar.git
git@gitee.com:dongaifeng/easyink_Sidebar.git
dongaifeng
easyink_Sidebar
easyink_Sidebar
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385