diff --git a/modules/server/nextcloud.nix b/modules/server/nextcloud.nix index dbfc4ec..3eab058 100644 --- a/modules/server/nextcloud.nix +++ b/modules/server/nextcloud.nix @@ -33,7 +33,7 @@ in secretFile = config.sops.secrets.nextcloud-talk-secret.path; }; settings = { - http.listen = "127.0.0.1:7880"; + http.listen = "127.0.0.1:8080"; clients.internalsecretFile = config.sops.secrets.internal-secret.path; sessions = { hashkeyFile = config.sops.secrets.hashkey.path; diff --git a/modules/server/nginx.nix b/modules/server/nginx.nix index 22701c7..f139600 100644 --- a/modules/server/nginx.nix +++ b/modules/server/nginx.nix @@ -94,25 +94,15 @@ in client_max_body_size 5G; ''; }; - "talk.private" = { - forceSSL = false; - enableACME = false; - listen = [ - { - addr = "127.0.0.1"; - port = 7880; - } - ]; - }; "talk.home.arpa" = { forceSSL = true; enableACME = true; - locations = { - "/" = { - proxyPass = "http://127.0.0.1:7880"; - proxyWebsockets = true; - }; - }; + # locations = { + # "/" = { + # proxyPass = "http://127.0.0.1:7880"; + # proxyWebsockets = true; + # }; + # }; extraConfig = '' client_max_body_size 5G; '';