1 Star 0 Fork 58

huangbo/Chat

forked from Token/EarthChat 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
nginx.conf 2.34 KB
一键复制 编辑 原始数据 按行查看 历史
Token 提交于 2023-07-26 18:37 . 增加文档更新
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/v1/ {
proxy_pass http://chat-api/api/v1/;
proxy_http_version 1.1;
chunked_transfer_encoding on;
proxy_max_temp_file_size 0;
proxy_buffering off;
proxy_cache off;
client_max_body_size 100M;
client_body_buffer_size 1M;
proxy_set_header Connection $http_connection;
proxy_set_header Host $http_host;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_connect_timeout 60s;
proxy_send_timeout 60s;
proxy_read_timeout 60s;
}
location /files/ {
proxy_pass http://chat-api/files/;
proxy_http_version 1.1;
chunked_transfer_encoding on;
proxy_max_temp_file_size 0;
proxy_buffering off;
proxy_cache off;
client_max_body_size 100M;
client_body_buffer_size 1M;
proxy_set_header Connection $http_connection;
proxy_set_header Host $http_host;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_connect_timeout 60s;
proxy_send_timeout 60s;
proxy_read_timeout 60s;
}
location /chatHub {
proxy_pass http://chat-api/chatHub;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
chunked_transfer_encoding on;
proxy_max_temp_file_size 0;
proxy_buffering off;
proxy_cache off;
client_max_body_size 100M;
client_body_buffer_size 1M;
proxy_set_header Host $http_host;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_connect_timeout 60s;
proxy_send_timeout 60s;
proxy_read_timeout 60s;
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/HuangBoPR/chat.git
git@gitee.com:HuangBoPR/chat.git
HuangBoPR
chat
Chat
master

搜索帮助