1 Star 4 Fork 1

潇洒哥/H5-Campus校园服务平台

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
nginx.conf 763 Bytes
一键复制 编辑 原始数据 按行查看 历史
吴雅涛 提交于 2024-08-28 12:24 . fix Dockerfile
server {
listen 8089;
server_name localhost;
# 开启gzip相关配置
gzip on;
gzip_static on;
gzip_min_length 2k;
gzip_buffers 4 8k;
gzip_types text/plain application/x-javascript text/css application/xml text/javascript application/x-httpd-php image/x-icon application/javascript;
gzip_comp_level 9;
gzip_disable "MSIE [1-6]\.";
location / {
root /usr/share/nginx/html;
try_files $uri $uri/ /index.html;
}
location ^~ /pro {
proxy_pass http://localhost:3000/api;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/chi-xiaosage/h5-campus-service-platform.git
git@gitee.com:chi-xiaosage/h5-campus-service-platform.git
chi-xiaosage
h5-campus-service-platform
H5-Campus校园服务平台
main

搜索帮助