Hi. Thanks for writing this plugin. I would like to point out a few additional settings that users might want to add in case they run into the following minio issue. The solution is to set the following configuration on nginx for your minio app: ignore_invalid_headers off;. Also in case one would like to increase the max file upload size (to 50mb for example) the following nginx configuration is needed: client_max_body_size 50m;. The way to add those settings to your app is specified in the dokku docs here.
@johnwilson If you're still experiencing the problem, it should be solved now. I'm going to close the issue for now, but feel free to reopen if your problems persist.
Hi. Thanks for writing this plugin. I would like to point out a few additional settings that users might want to add in case they run into the following minio issue. The solution is to set the following configuration on nginx for your minio app:
ignore_invalid_headers off;
. Also in case one would like to increase the max file upload size (to 50mb for example) the following nginx configuration is needed:client_max_body_size 50m;
. The way to add those settings to your app is specified in the dokku docs here.