From afbcb7b0ad2122aa30d858d89546cfe4c7cc73dd Mon Sep 17 00:00:00 2001 From: Kjetil Orbekk Date: Wed, 5 Oct 2022 19:59:03 -0400 Subject: Host bridge on pincer --- config/web-server.nix | 2 +- data/aliases.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/web-server.nix b/config/web-server.nix index a63c76a..767d7f9 100644 --- a/config/web-server.nix +++ b/config/web-server.nix @@ -73,7 +73,7 @@ in { locations."/".proxyPass = "http://localhost:${toString keycloak_loc.http-port}"; }; "bridge.orbekk.com" = template // { - locations."/".proxyPass = "http://localhost:${toString bridge_loc.port}"; + locations."/".proxyPass = "http://${bridge_loc.host}:${toString bridge_loc.port}"; }; "git.orbekk.com" = template // { locations."/".proxyPass = "http://localhost:11103"; diff --git a/data/aliases.nix b/data/aliases.nix index dfab8a1..6f8d5f4 100644 --- a/data/aliases.nix +++ b/data/aliases.nix @@ -55,6 +55,6 @@ rec { hledger-web = { port = 11116; }; prometheus-pms7003-exporter = { host = "172.20.100.10"; port = 11117; }; keycloak = { http-port = 11118; https-port = 11119; }; - bridge = { port = 11120; }; + bridge = { host = "pincer"; port = 11120; }; }; } -- cgit v1.2.3