diff options
author | tdback <tyler@tdback.net> | 2025-01-18 11:29:54 -0500 |
---|---|---|
committer | tdback <tyler@tdback.net> | 2025-01-18 11:29:54 -0500 |
commit | c83fa9cd8cd0ec6cbd9cf8d5b3d29a6b45ba06c1 (patch) | |
tree | 6e8f9b565fbc0e29130039da628b5411f4773e52 /modules/services/matrix | |
parent | 5982a1b6970356ccf35e171d5874cf13645073a9 (diff) |
fix: use bind_addresses
Diffstat (limited to 'modules/services/matrix')
-rw-r--r-- | modules/services/matrix/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/services/matrix/default.nix b/modules/services/matrix/default.nix index a49d886..61bc83b 100644 --- a/modules/services/matrix/default.nix +++ b/modules/services/matrix/default.nix @@ -104,7 +104,7 @@ in public_baseurl = baseUrl; listeners = lib.singleton { port = 8008; - bind_address = [ "::1" ]; + bind_addresses = [ "::1" ]; type = "http"; tls = false; x_forwarded = true; |