From def10ec06d52dccf634cd0a05ab5e64fbf541220 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kha=C3=AFs=20COLIN?= Date: Sun, 25 Aug 2024 13:32:12 +0200 Subject: [PATCH] fix(teedy): use correct port for proxypass since using network=host, the ports directive has no effect --- nginx.nix | 2 +- teedy.nix | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/nginx.nix b/nginx.nix index f989df9..be8f822 100644 --- a/nginx.nix +++ b/nginx.nix @@ -30,7 +30,7 @@ enableACME = true; forceSSL = true; locations."/" = { - proxyPass = "http://localhost:7778"; + proxyPass = "http://localhost:8080"; }; }; }; diff --git a/teedy.nix b/teedy.nix index ca0f417..f3c4175 100644 --- a/teedy.nix +++ b/teedy.nix @@ -7,9 +7,6 @@ in containers = { teedy = { image = "sismics/docs:v1.11"; - ports = [ - "7778:8080" - ]; volumes = [ "/var/lib/teedy/data:/data" ];