diff --git a/modules/nixos/nextcloud.nix b/modules/nixos/nextcloud.nix index d62694e..342344d 100644 --- a/modules/nixos/nextcloud.nix +++ b/modules/nixos/nextcloud.nix @@ -50,9 +50,9 @@ in "baldur.tsn" ]; dbtype = "pgsql"; - # extraTrustedDomains = [ "freya.tsn" ]; + extraTrustedDomains = [ "freya.tsn" ]; adminpassFile = config.age.secrets.nextcloud_admin_secret.path; - overwriteProtocol = "https"; + # overwriteProtocol = "https"; # objectstore.s3 = { # enable = true; # bucket = "nextcloud-storage"; @@ -68,5 +68,5 @@ in }; }; - networking.firewall.allowedTCPPorts = [ 80 ]; + networking.firewall.allowedTCPPorts = [ 80 443 ]; }