From 8458c8ad2b252709e08f772c0562fee1c0172e88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Mon, 17 Feb 2020 14:51:19 +0100 Subject: [PATCH] Add HAProxy .well-known redirect MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- .../configuration_server/reverse_proxy_configuration.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/admin_manual/configuration_server/reverse_proxy_configuration.rst b/admin_manual/configuration_server/reverse_proxy_configuration.rst index 1c01826c3..329c68efe 100644 --- a/admin_manual/configuration_server/reverse_proxy_configuration.rst +++ b/admin_manual/configuration_server/reverse_proxy_configuration.rst @@ -73,6 +73,12 @@ Traefik Thanks to `@pauvos `_ for traefik example. +HAProxy +^^^^^^^ + + acl url_discovery path /.well-known/caldav /.well-known/carddav + http-request redirect location /remote.php/dav/ code 301 if url_discovery + Example -------