diff options
author | Charles Hall <charles@computer.surgery> | 2023-07-21 12:12:37 -0700 |
---|---|---|
committer | Charles Hall <charles@computer.surgery> | 2023-07-21 12:12:37 -0700 |
commit | 6ae5143ff5b5d009beaff58c2559027269e4792c (patch) | |
tree | a6fa8ea3d5d6e6536a9f70f6c7d49814d188ea04 | |
parent | 742331e054b3570e1f02f02162ee667afa1f8281 (diff) | |
download | conduit-6ae5143ff5b5d009beaff58c2559027269e4792c.zip |
only listen on IPv6 since that's what conduit does
-rw-r--r-- | nix/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nix/README.md b/nix/README.md index f8537d5..bd6f096 100644 --- a/nix/README.md +++ b/nix/README.md @@ -179,7 +179,7 @@ in upstreams = { "backend_conduit" = { servers = { - "localhost:${toString config.services.matrix-conduit.settings.global.port}" = { }; + "[::1]:${toString config.services.matrix-conduit.settings.global.port}" = { }; }; }; }; |