From c2ca0752aa460457fd86fe6d4cd6ba794b470e34 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Thu, 31 Aug 2023 14:28:11 -0400 Subject: [PATCH] Infini-SERVER: change Vaultwarden address to IP --- hosts/Infini-SERVER/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/Infini-SERVER/default.nix b/hosts/Infini-SERVER/default.nix index 9175791..a8b5636 100644 --- a/hosts/Infini-SERVER/default.nix +++ b/hosts/Infini-SERVER/default.nix @@ -100,7 +100,7 @@ }; "bitwarden.inx.moe" = ssl // { locations."/" = { - proxyPass = "http://localhost:${toString config.services.vaultwarden.config.ROCKET_PORT}"; + proxyPass = "http://127.0.0.1:${toString config.services.vaultwarden.config.ROCKET_PORT}"; }; }; }; @@ -113,7 +113,7 @@ DOMAIN = "https://bitwarden.inx.moe"; SIGNUPS_ALLOWED = false; - ROCKET_ADDRESS = "localhost"; + ROCKET_ADDRESS = "127.0.0.1"; ROCKET_PORT = 8222; ROCKET_LOG = "critical";