1 Star 0 Fork 117

W3C/PureChat

forked from yongkang/PureChat 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
nginx.conf 746 Bytes
一键复制 编辑 原始数据 按行查看 历史
# Generated by nginxconfig.io
# https://nginx.p2hp.com/config/?domains.0.php.php=false&domains.0.reverseProxy.reverseProxy=true&domains.0.routing.root=false&global.app.lang=zhCN
server {
listen 80;
server_name www.example.com;
# 设置默认索引文件
index index.html;
# 设置代理请求头,用于传递客户端信息
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Host $server_name;
proxy_set_header X-Real-IP $remote_addr;
# 核心配置:处理前端路由
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
# 配置 404 错误页面
error_page 404 /404.html;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/w3cSTU/PureChat.git
git@gitee.com:w3cSTU/PureChat.git
w3cSTU
PureChat
PureChat
main

搜索帮助