service-nextcloud/nginx.conf.d/dav.conf

16 lines
294 B
Plaintext
Raw Normal View History

2024-05-05 17:05:33 +00:00
location = /robots.txt {
allow all;
log_not_found off;
access_log off;
}
location = /.well-known/carddav {
return 301 $scheme://$host/remote.php/dav;
}
location = /.well-known/caldav {
return 301 $scheme://$host/remote.php/dav;
}
location /.well-known/acme-challenge { }