加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
nginx.conf 631 Bytes
一键复制 编辑 原始数据 按行查看 历史
吴LB 提交于 2022-09-01 23:32 . wms 前端
server {
listen 8080;
server_name localhost;
#charset koi8-r;
access_log /var/log/nginx/host.access.log main;
error_log /var/log/nginx/error.log error;
location /api/ {
rewrite /api/(.*) /$1 break;
proxy_pass http://120.77.145.180:8080;
}
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化