From 2e9dc554df01f28a3ef1c5eb17aa438090cf7c38 Mon Sep 17 00:00:00 2001 From: stuebinm Date: Thu, 25 Mar 2021 23:26:07 +0100 Subject: [PATCH] fix nextcloud configuration error --- hosts/hainich/services/nextcloud.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/hainich/services/nextcloud.nix b/hosts/hainich/services/nextcloud.nix index efb0e6e..6b2b12a 100644 --- a/hosts/hainich/services/nextcloud.nix +++ b/hosts/hainich/services/nextcloud.nix @@ -20,7 +20,7 @@ autoStart = true; privateNetwork = true; hostAddress6 = "fd00::10:1"; - localAddress6 = "fs00::10:2"; + localAddress6 = "fd00::10:2"; config = { pkgs, ... }: { @@ -118,7 +118,7 @@ }; services.nginx.virtualHosts."cloud2.infra4future.de" = { - locations."/".proxyPass = "http:[${config.containers.nextcloud.localAddress6}]"; + locations."/".proxyPass = "http://[${config.containers.nextcloud.localAddress6}]:80"; enableACME = true; forceSSL = true; };