8 lines
284 B
Plaintext
8 lines
284 B
Plaintext
# 反代到 Spring Boot 时加入(server 或 location /api/ 内)
|
||
# 默认 client_max_body_size 仅 1m,会导致大视频返回 HTTP 413,小程序提示「文件过大」
|
||
|
||
client_max_body_size 200m;
|
||
proxy_connect_timeout 300s;
|
||
proxy_send_timeout 300s;
|
||
proxy_read_timeout 300s;
|