Use a vhost.d in current folder.

This commit is contained in:
Mikaël Capelle
2023-08-25 07:04:32 +00:00
parent b39fdf05d0
commit ba9323950b
11 changed files with 31 additions and 1 deletions

15
vhost.d/cloud.typename.fr Normal file
View File

@@ -0,0 +1,15 @@
client_max_body_size 10g;
location ^~ /.well-known {
# The following 6 rules are borrowed from `.htaccess`
rewrite ^/\.well-known/host-meta\.json /public.php?service=host-meta-json last;
rewrite ^/\.well-known/host-meta /public.php?service=host-meta last;
rewrite ^/\.well-known/webfinger /public.php?service=webfinger last;
rewrite ^/\.well-known/nodeinfo /public.php?service=nodeinfo last;
location = /.well-known/carddav { return 301 /remote.php/dav/; }
location = /.well-known/caldav { return 301 /remote.php/dav/; }
try_files $uri $uri/ =404;
}