From 8e589775a299bbe53d22edb6a69706cebc5d8676 Mon Sep 17 00:00:00 2001 From: Jacob Hinkle Date: Thu, 13 Oct 2022 09:05:44 -0400 Subject: [PATCH] Add vault.jhink.org reverse proxy --- machines/pedro/nginx.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/machines/pedro/nginx.nix b/machines/pedro/nginx.nix index 720c616..5d981a5 100644 --- a/machines/pedro/nginx.nix +++ b/machines/pedro/nginx.nix @@ -9,7 +9,7 @@ proxy_buffering off; ''; locations."/" = { - proxyPass = "http://[::1]:${toString ip}"; + proxyPass = "http://127.0.0.1:${toString ip}"; proxyWebsockets = true; }; }; @@ -17,6 +17,6 @@ "home.jhink.org" = simpleProxy 8123; "git.jhink.org" = simpleProxy 3000; "paperless.jhink.org" = simpleProxy 8000; - #"vault.jhink.org" = simpleProxy 8081; + "vault.jhink.org" = simpleProxy 8222; }; }