From b15ab0f3a2703fee92cc6510c92bdb51cec06920 Mon Sep 17 00:00:00 2001 From: s-prechtl Date: Sun, 22 Jun 2025 18:23:54 +0200 Subject: [PATCH] feat: new listens --- hosts/hitsugibune/nextcloud.nix | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/hosts/hitsugibune/nextcloud.nix b/hosts/hitsugibune/nextcloud.nix index fceed42..cda5c04 100644 --- a/hosts/hitsugibune/nextcloud.nix +++ b/hosts/hitsugibune/nextcloud.nix @@ -46,11 +46,15 @@ enableACME = true; listen = [ { - addr = "127.0.0.1"; - port = 8080; # NOT an exposed port + addr = "0.0.0.0"; + port = 80; + } + { + addr = "0.0.0.0"; + port = 443; + ssl = true; } ]; - locations = { "/nextcloud" = { priority = 9999;