Assume you are running an owncloud instance behind an nginx reverse proxy. When trying to increase the maximum file size make sure you
- follow the owncloud instructions
- adjust the nginx config accordingly:
server {
server_name xxxxx.htlweiz.at;
client_max_body_size 2048M;
location / { ... }
}