From 802357d0db9412307f031f216e0edc37c09c7324 Mon Sep 17 00:00:00 2001 From: hoellen Date: Wed, 31 Oct 2018 10:59:42 +0100 Subject: [PATCH] fix warning in nextcloud setup check --- nextcloud/rootfs/nginx/sites-enabled/nginx.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nextcloud/rootfs/nginx/sites-enabled/nginx.conf b/nextcloud/rootfs/nginx/sites-enabled/nginx.conf index 24947e5..6a7cb58 100644 --- a/nextcloud/rootfs/nginx/sites-enabled/nginx.conf +++ b/nextcloud/rootfs/nginx/sites-enabled/nginx.conf @@ -19,11 +19,11 @@ server { } 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; } location / {