Don't listen on ::1 in case we don't have a v6

This commit is contained in:
niten 2024-01-16 12:19:07 -08:00
parent 89bfad8185
commit 1c1034ffe3
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ in {
oidc_providers = [ ];
listeners = [{
port = cfg.port;
bind_addresses = [ "127.0.0.1" "::1" ];
bind_addresses = [ "127.0.0.1" ];
type = "http";
tls = false;
x_forwarded = true;