From 372f3fc8a31114a167a7b377f460aa189127cf9c Mon Sep 17 00:00:00 2001 From: Pierre Ozoux Date: Wed, 13 Feb 2019 17:44:26 +0100 Subject: [PATCH] Fixes the scheme just to be sure. --- nginx.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nginx.conf b/nginx.conf index 490c465..3e781cd 100644 --- a/nginx.conf +++ b/nginx.conf @@ -30,10 +30,10 @@ http { } location = /.well-known/carddav { - return 301 $scheme://$host/remote.php/dav; + return 301 https://$host/remote.php/dav; } location = /.well-known/caldav { - return 301 $scheme://$host/remote.php/dav; + return 301 https://$host/remote.php/dav; } client_max_body_size 1G; -- GitLab