1 Star 0 Fork 53

Jerry / EarthChat

forked from Token / EarthChat 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
main.conf 939 Bytes
一键复制 编辑 原始数据 按行查看 历史
Token 提交于 2023-10-25 11:53 . 优化nginx配置文件
server {
listen 80;
server_name localhost;
location / {
proxy_pass http://chat-web/;
proxy_http_version 1.1;
chunked_transfer_encoding on;
proxy_max_temp_file_size 0;
proxy_buffering off;
proxy_cache off;
}
location /api/ {
proxy_pass http://chat-api/api/v1/;
proxy_http_version 1.1;
client_max_body_size 100M;
client_body_buffer_size 1M;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $http_connection;
proxy_set_header Host $http_host;
proxy_cache_bypass $http_upgrade;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Prefix auth;
proxy_set_header X-Real-IP $remote_addr;
}
location /files/ {
proxy_pass http://chat-api/files/;
}
}
C#
1
https://gitee.com/JerryFox/chat.git
git@gitee.com:JerryFox/chat.git
JerryFox
chat
EarthChat
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891