Increase size limit of body in nginx.conf

This should hopefully fix the problem of image sending
This commit is contained in:
Mathieu Oriol
2025-01-29 14:25:39 +01:00
parent 03a23979f7
commit 6ab8ccbe17

View File

@@ -6,6 +6,7 @@ events {
http {
server {
listen 80;
client_max_body_size 15M;
location / {
proxy_pass http://front:3000/;
proxy_set_header Host $host;