From d4f241614f85b20dcb0d3d801de46720e79977ea Mon Sep 17 00:00:00 2001 From: Craige McWhirter Date: Sat, 26 Oct 2019 17:09:36 +1000 Subject: [PATCH] Switched to IPV4 address This ensures nginx redirects to IPv4, not IPv6 --- Deployments/hydra.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Deployments/hydra.nix b/Deployments/hydra.nix index 0cacb78..5e2fe73 100644 --- a/Deployments/hydra.nix +++ b/Deployments/hydra.nix @@ -6,7 +6,7 @@ disabledModules = [ "services/continuous-integration/hydra/default.nix" ]; imports = [ - /home/craige/git/NixOS/hydra/hydra-module.nix + /home/craige/source/NixOS/hydra/hydra-module.nix ]; services.postfix = { @@ -49,7 +49,7 @@ virtualHosts."hydra.mcwhirter.io" = { forceSSL = true; enableACME = true; - locations."/".proxyPass = "http://localhost:3000"; + locations."/".proxyPass = "http://127.0.0.1:3000"; }; };