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; };