Fix nginx settings for Nextcloud.

This commit is contained in:
Jonathan Chan 2020-10-25 12:21:08 -07:00
parent 7a9479abee
commit e0b705e860
1 changed files with 4 additions and 3 deletions

View File

@ -2,6 +2,7 @@ server {
server_name next.ionathan.ch; server_name next.ionathan.ch;
client_max_body_size 512M; client_max_body_size 512M;
add_header Strict-Transport-Security "max-age=15552000; includeSubDomains" always;
location / { location / {
proxy_pass http://localhost:8080; proxy_pass http://localhost:8080;
@ -9,10 +10,10 @@ server {
proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Real-IP $remote_addr;
} }
location = /.well-known/carddav { location = /.well-known/carddav {
return 301 http://localhost:8080/remote.php/dav; return 301 $scheme://$host/remote.php/dav;
} }
location = /.well-known/caldav { location = /.well-known/caldav {
return 301 http://localhost:8080/remote.php/dav; return 301 $scheme://$host/remote.php/dav;
} }
listen [::]:443 ssl; # managed by Certbot listen [::]:443 ssl; # managed by Certbot
@ -37,4 +38,4 @@ server {
return 404; # managed by Certbot return 404; # managed by Certbot
} }