Browse Source
Merge pull request #382 from Thovi98/21.0.0
Fixes Nextcloud 21
pull/397/head
Kayou
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
0 deletions
-
conf/nginx.conf
|
|
|
@ -12,6 +12,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; |
|
|
|
} |
|
|
|
|