Describe your Issue
Breaking the file upload workflow.
Describe your Environment
- Helm Chart Version: 7.0.0
Fix
Make the max file size a variable in the nginx configuration.
in the nginx file nginx.config.tpl
client_max_body_size 10G; was changed to client_max_body_size 512M;
Would it be possible to make it a chart parameter, like:
client_max_body_size {{ .Values.nginx.maxUploadFileSize }};
If needed, I can prepare a MR.