Nginx proxies and local file uploads

In case anyone else is using an Nginx reverse proxy in front of CS to do https termination, etc.

I just needed to add the following config to allow the local file uploads feature to work, (not sure if this is in the docs anywhere).

http {
     client_max_body_size 100M;
      ....
1 Like

Hi @yoshiokc ,

Thanks for the tip! Indeed, the HTTP request body for the file uploading system is ~5MB and the default NGINX configuration allows for only 1MB. We will update our documentation accordingly.

- Suhail

1 Like