[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!
1 Reply
Prastoin
Prastoin2mo ago
Hey @blockhead76, unless I'm mistaken the default file size upload limit is 10MB. From searches it does not seem to be highly configurable. Hey @Weiko do you please have any further information ?

Did you find this page helpful?