fix(nginx): client body size and timeout

This commit is contained in:
Michael 2025-03-10 15:33:21 +01:00
parent 6aef2b0aaf
commit 31d152831f
1 changed files with 3 additions and 0 deletions

View File

@ -11,6 +11,9 @@ server {
charset utf-8;
client_max_body_size 512M;
client_body_timeout 300s;
location / {
try_files $uri $uri/ /index.php?$query_string;
}