This commit is contained in:
Stefan Wieczorek
2022-04-19 14:19:34 +02:00
parent ece6ff3cee
commit 1b1ab2d48f
2 changed files with 4 additions and 1 deletions

View File

@@ -17,7 +17,6 @@ server {
} }
location ^~ /.well-known { location ^~ /.well-known {
location = /.well-known/carddav { return 301 /remote.php/dav/; } location = /.well-known/carddav { return 301 /remote.php/dav/; }
location = /.well-known/caldav { return 301 /remote.php/dav/; } location = /.well-known/caldav { return 301 /remote.php/dav/; }
location ^~ /.well-known { return 301 /index.php$uri; } location ^~ /.well-known { return 301 /index.php$uri; }
@@ -26,6 +25,8 @@ server {
allow all; allow all;
} }
{{settings}}
location / { location / {
rewrite ^ /index.php; rewrite ^ /index.php;
} }

View File

@@ -25,6 +25,8 @@ server {
allow all; allow all;
} }
{{settings}}
location / { location / {
rewrite ^ /index.php; rewrite ^ /index.php;
} }