diff --git a/client/nginx.conf b/client/nginx.conf index 455979aa16..7a64fb0f65 100644 --- a/client/nginx.conf +++ b/client/nginx.conf @@ -7,6 +7,10 @@ server { server_name localhost; + # Increase the client_max_body_size to allow larger file uploads + # The default limits for image uploads as of 11/22/23 is 20MB/file, and 25MB/request + client_max_body_size 25M; + location /api { proxy_pass http://api:3080/api; }