1 Star 0 Fork 9

wenlu_liao/langchain4j-aideepin-admin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
nginx.conf 1.06 KB
一键复制 编辑 原始数据 按行查看 历史
moyangzhan 提交于 2024-06-19 00:10 . init
server {
listen 80;
server_name localhost;
charset utf-8;
proxy_buffering off;
error_page 500 502 503 504 /50x.html;
# 用户端WEB页面配置
# 如果用户端WEB跟管理后台WEB不在同一台服务器上,注释本Location的配置
# 访问地址:http://你的ip:port/
location / {
root /usr/share/nginx/adi-web;
index /index.html;
}
# 管理后台WEB页面配置
# 访问地址:http://你的ip:port/admin
# location中的 /admin 需要与.env.production中的VITE_PUBLIC_PATH设置的值相等
location /admin/ {
alias /data/adi-admin-web/;
index /index.html;
# 路由使用history的方式时需要用try_files指定默认页面
# hash方式可以屏蔽该配置
# try_files $uri $uri/ /admin/index.html;
}
# 后端服务
location /api/ {
proxy_set_header X-Real-IP $remote_addr; #转发用户IP
proxy_pass http://localhost:9999/;
}
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header REMOTE-HOST $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/liaowl/langchain4j-aideepin-admin.git
git@gitee.com:liaowl/langchain4j-aideepin-admin.git
liaowl
langchain4j-aideepin-admin
langchain4j-aideepin-admin
main

搜索帮助

0d507c66 1850385 C8b1a773 1850385