1 Star 0 Fork 4K

hourglass1016/pig-ui

forked from lengleng/pig-ui 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
web.conf 991 Bytes
一键复制 编辑 原始数据 按行查看 历史
hourglass1016 提交于 2023-01-12 08:31 . add web.conf.
server {
listen 80;
gzip on;
gzip_static on; # 需要http_gzip_static_module 模块
gzip_min_length 1k;
gzip_comp_level 4;
gzip_proxied any;
gzip_types text/plain text/xml text/css;
gzip_vary on;
gzip_http_version 1.0; #兼容多层nginx 反代
gzip_disable "MSIE [1-6]\.(?!.*SV1)";
# 打包好的dist目录文件,放置到这个目录下
root /app/www;
# 注意维护新增微服务,gateway 路由前缀
location ~* ^/(code|auth|admin|gen) {
proxy_pass http://127.0.0.1:9999;
#proxy_set_header Host $http_host;
proxy_connect_timeout 15s;
proxy_send_timeout 15s;
proxy_read_timeout 15s;
proxy_set_header X-Forwarded-Proto http;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
# 避免端点安全问题
if ($request_uri ~ "/actuator"){
return 403;
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/1109391515/pig-ui.git
[email protected]:1109391515/pig-ui.git
1109391515
pig-ui
pig-ui
master

搜索帮助