You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Error
When uploading a file I get the above message
Steps to reproduce
Upload a >2M file to a site behind it
Expected result
An OK
Error result
Failed upload
Comments
Hi Evert
I'm trying to get it to allow uploading some really large files through this.
I have a website in DMZ that is forwarded through an nginx behind your setup.
So your nginx forwards to my nginx that forwards to an inside site.
The docker-compose file I've made for this:
# web forward for site
site-url:
image: nginx
container_name: site-url
restart: always
volumes:
- "/docker/site:/etc/nginx/conf.d"
# depends_on:
# - name_of_all_your_other_services
environment:
VIRTUAL_HOST: siteurl
LETSENCRYPT_HOST: siteurl
LETSENCRYPT_EMAIL: email
In 'my own' nginx conf.d I've given the line:
client_max_body_size 100M;
To solve this, but how do I get this added to the hosts that is automatically generated by the environment settings?
The text was updated successfully, but these errors were encountered:
Error description:
Error

When uploading a file I get the above message
Steps to reproduce
Upload a >2M file to a site behind it
Expected result
An OK
Error result
Failed upload
Comments
Hi Evert
I'm trying to get it to allow uploading some really large files through this.
I have a website in DMZ that is forwarded through an nginx behind your setup.
So your nginx forwards to my nginx that forwards to an inside site.
The docker-compose file I've made for this:
In 'my own' nginx conf.d I've given the line:
client_max_body_size 100M;
To solve this, but how do I get this added to the hosts that is automatically generated by the environment settings?
The text was updated successfully, but these errors were encountered: