client max body limit

This commit is contained in:
kekskurse 2024-04-28 22:39:18 +02:00
parent 771ab549d5
commit 15accba43f
1 changed files with 2 additions and 0 deletions

View File

@ -2,6 +2,8 @@ server {
listen 80;
server_name {{ domain }};
client_max_body_size 500M;
location / { # Note: Trailing slash
proxy_pass http://localhost:3000; # Note: Trailing slash
}