1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/nextcloud_ynh.git synced 2024-09-03 19:55:57 +02:00

Merge pull request #382 from Thovi98/21.0.0

Fixes Nextcloud 21
This commit is contained in:
Kayou 2021-03-08 18:45:21 +01:00 committed by GitHub
commit 3bc67b831f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,6 +13,9 @@ location ^~ /.well-known {
location = /.well-known/carddav { return 301 __PATH__/remote.php/dav/; }
location = /.well-known/caldav { return 301 __PATH__/remote.php/dav/; }
# Anything else is dynamically handled by Nextcloud
location ^~ /.well-known { return 301 __PATH__/index.php$uri; }
try_files $uri $uri/ =404;
}