fix:修改nginx超时时间

test
HuangHuiKang 2 weeks ago
parent 576a9fa5e6
commit a45bce5027

@ -5,6 +5,18 @@ server {
# 关键允许上传最大100MB
client_max_body_size 100m;
# 超时时间
proxy_connect_timeout 300s;
proxy_send_timeout 300s;
proxy_read_timeout 300s;
client_body_timeout 300s;
send_timeout 300s;
# 防止大文件上传被缓冲卡死
proxy_request_buffering off;
proxy_buffering off;
location /admin-api/ {
proxy_pass http://besure_server:48081;
proxy_set_header Host $host;

Loading…
Cancel
Save