From 9fcd9bf01d0b71fee17c839829c2515a10908c25 Mon Sep 17 00:00:00 2001 From: Jaculabilis Date: Sun, 11 Dec 2022 13:06:10 +0000 Subject: [PATCH] Fix IP for catacomb forward --- machine/empyrean/catacomb.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/machine/empyrean/catacomb.nix b/machine/empyrean/catacomb.nix index 407788e..8b9fdc3 100644 --- a/machine/empyrean/catacomb.nix +++ b/machine/empyrean/catacomb.nix @@ -12,18 +12,18 @@ ''; locations = { # Forwards to the index server - "/browse/".proxyPass = "http://10.7.3.16:7472/browse/"; + "/browse/".proxyPass = "http://10.22.20.2:7472/browse/"; # Forwards to nginx via catacomb auth server "/".extraConfig = '' auth_request /auth; proxy_buffering off; - proxy_pass http://10.7.3.16:7470/; + proxy_pass http://10.22.20.2:7470/; ''; "= /auth".extraConfig = '' internal; proxy_buffering off; proxy_pass_request_body off; - proxy_pass http://10.7.3.16:7471/; + proxy_pass http://10.22.20.2:7471/; proxy_set_header Content-Length ""; proxy_set_header X-Original-URI $request_uri; '';