From b5f5b0819daadec522c9e8dad8589c1087be5d57 Mon Sep 17 00:00:00 2001 From: Steve Hay Date: Thu, 22 Sep 2022 14:28:13 -0400 Subject: [PATCH] Add .well-known service discovery redirects to TLD --- management/web_update.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/management/web_update.py b/management/web_update.py index 7230182b..b1049583 100644 --- a/management/web_update.py +++ b/management/web_update.py @@ -136,6 +136,11 @@ def make_domain_config(domain, templates, ssl_certificates, env): nginx_conf_extra = "" + # Add .well-known redirects for CalDAV and CardDAV to TLD, which may make for better service discovery + if len(domain.split('.'))==2: + nginx_conf_extra += f"\n\trewrite ^/.well-known/caldav https://{env['PRIMARY_HOSTNAME']}/cloud/remote.php/dav/ redirect;" + nginx_conf_extra += f"\n\trewrite ^/.well-known/carddav https://{env['PRIMARY_HOSTNAME']}/cloud/remote.php/dav/ redirect;\n\n" + # Because the certificate may change, we should recognize this so we # can trigger an nginx update. def hashfile(filepath):