From 83820b88290d201c50713ce24237d4db5621afc0 Mon Sep 17 00:00:00 2001 From: richard Date: Sun, 7 Mar 2021 22:13:47 -0500 Subject: [PATCH] add .well-known routes to xaibox config for sslproxy --- .../services/sslproxy/hosts/xaibox.xai-corp.net.conf | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/dockerfiles/services/sslproxy/hosts/xaibox.xai-corp.net.conf b/dockerfiles/services/sslproxy/hosts/xaibox.xai-corp.net.conf index 2da6104..d1a6eed 100644 --- a/dockerfiles/services/sslproxy/hosts/xaibox.xai-corp.net.conf +++ b/dockerfiles/services/sslproxy/hosts/xaibox.xai-corp.net.conf @@ -24,6 +24,14 @@ server { #Strict-Transport-Security: max-age=15768000 add_header Strict-Transport-Security "max-age=15552000; includeSubDomains" always; + location /.well-known/carddav { + return 301 $scheme://$host/remote.php/dav; + } + + location /.well-known/caldav { + return 301 $scheme://$host/remote.php/dav; + } + location / { proxy_set_header Connection $http_connection; proxy_set_header Host xaibox.xai-corp.net:$server_port;