I used the nextcloud one and modified it.
Use it with your domain and save it as owncloud.
server {
listen 443 ssl;
listen [::]:443 ssl;
server_name owncloud*.*;
include /config/nginx/ssl.conf;
client_max_body_size 0;
location / {
include /config/nginx/proxy.conf;
resolver 127.0.0.11 valid=30s;
set $upstream_owncloud owncloud;
proxy_max_temp_file_size 2048m;
proxy_pass https://$upstream_owncloud:443;
}
}
Got two files that keep getting 503 errors and i cannot upload them with the owncloud windows client.
They are 1.5G and 700M, but i dont think it's the size because i have uploaded much larger files without any problems. I have the limits on php.ini to 100G.
Any ideas?