server { listen 80; server_name cloud.wojciechkozlowski.eu; location ^~ /.well-known { allow all; root /var/www/html; } location / { return 301 https://$server_name$request_uri; } } server { listen 443 ssl; server_name cloud.wojciechkozlowski.eu; client_max_body_size 10G; # 0=unlimited - set max upload size location / { proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $remote_addr; proxy_set_header Host $host; proxy_pass http://nextcloud; } error_page 500 502 503 504 /50x.html; location = /50x.html { root /usr/share/nginx/html; } }