1 Star 0 Fork 0

上帝已无言/cola-cloud-admin-ui

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
nginx.conf 687 Bytes
一键复制 编辑 原始数据 按行查看 历史
上帝已无言 提交于 2022-10-08 10:11 . init
worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
server {
listen 80;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
location ^~ /api/ {
proxy_redirect off;
proxy_set_header Host $host:$server_port;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header x-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://10.0.4.9:8085/;
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/xiaolifeizei/cola-cloud-admin-ui.git
git@gitee.com:xiaolifeizei/cola-cloud-admin-ui.git
xiaolifeizei
cola-cloud-admin-ui
cola-cloud-admin-ui
master

搜索帮助

23e8dbc6 1850385 7e0993f3 1850385