From 1761b3ff2ec02172e39208b42ec0b56f08aea8ed Mon Sep 17 00:00:00 2001 From: Lillian-Violet Date: Wed, 3 Jan 2024 23:06:01 +0100 Subject: [PATCH] Use the correct port for ombi --- nixos/package-configs/ombi/configuration.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/nixos/package-configs/ombi/configuration.nix b/nixos/package-configs/ombi/configuration.nix index e2f411b..a5da7de 100644 --- a/nixos/package-configs/ombi/configuration.nix +++ b/nixos/package-configs/ombi/configuration.nix @@ -6,7 +6,6 @@ users.users = { ombi.extraGroups = ["radarr" "sonarr"]; }; - #uses port 7878 services.ombi = { enable = true; port = 2368; @@ -18,7 +17,7 @@ forceSSL = true; enableACME = true; locations."/" = { - proxyPass = "http://localhost:2386"; + proxyPass = "http://localhost:2368"; }; }; };