diff options
author | sils <sils@sils.li> | 2023-07-26 10:34:20 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-11-18 19:32:46 +0100 |
commit | 073cfe156f327d681d1c75ce5546c0403c1be2a5 (patch) | |
tree | 75193655ee861421aa18c3dcbafb67a1917328cf | |
parent | Refactor(system/services/etebase): Format (diff) | |
download | nixos-server-073cfe156f327d681d1c75ce5546c0403c1be2a5.tar.gz nixos-server-073cfe156f327d681d1c75ce5546c0403c1be2a5.zip |
Fix(system/services/etebase): Proxy ipv4
-rw-r--r-- | system/services/etebase/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/services/etebase/default.nix b/system/services/etebase/default.nix index 3ea2de7..1b1a2f2 100644 --- a/system/services/etebase/default.nix +++ b/system/services/etebase/default.nix @@ -18,7 +18,7 @@ "dav.vhack.eu" = { enableACME = true; forceSSL = true; - locations."/".proxyPass = "http://[::1]:8001"; + locations."/".proxyPass = "http://127.0.0.1:8001"; }; }; }; |