2 Commits

Author SHA1 Message Date
9c71f6caaa Merge ce35996d44 into ce390fc654 2024-06-26 07:38:55 +02:00
ce35996d44 Adding trailing slash
https://docs.nextcloud.com/server/29/admin_manual/installation/nginx.html indicates there has to me one
2024-06-07 12:31:49 +02:00

View File

@ -30,8 +30,8 @@ server {
}
location ^~ /.well-known {
location = /.well-known/carddav { return 301 $nc_proto://$host/remote.php/dav; }
location = /.well-known/caldav { return 301 $nc_proto://$host/remote.php/dav; }
location = /.well-known/carddav { return 301 $nc_proto://$host/remote.php/dav/; }
location = /.well-known/caldav { return 301 $nc_proto://$host/remote.php/dav/; }
location ^~ /.well-known { return 301 $nc_proto://$host/index.php$uri; }
try_files $uri $uri/ =404;
}