TwentyT
Twenty9mo ago
1 reply
blockhead76

[SELF_HOSTING] File Upload Size Limit Increase

I'm using Nginx as a reverse proxy and have set the upload limit to 512Mb in the Nginx configuration as seen below:

location / {
client_max_body_size 512M;

proxy_pass http://localhost:3000;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
}

However, I am unable to upload anything bigger than 100Mb. What else do I need to change in order to uload files larger than 100Mb?

Thanks in advance!
Was this page helpful?