diff options
author | sefidel <contact@sefidel.net> | 2023-12-22 18:47:24 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2023-12-22 18:47:24 +0900 |
commit | 81e502a651b39e96cc062e9a8a376cc2bd7a4378 (patch) | |
tree | 9373d19e72c297e8df8058d8d102eb61d37b22a3 /overlays | |
parent | a7afd6501d87d0200b7fbfd3ce58b6b14c8f0c06 (diff) | |
download | infra-81e502a651b39e96cc062e9a8a376cc2bd7a4378.tar.gz infra-81e502a651b39e96cc062e9a8a376cc2bd7a4378.zip |
feat(modules/matrix-bridge): [::] -> localhost
Diffstat (limited to 'overlays')
-rw-r--r-- | overlays/mautrix-discord-module.nix | 2 | ||||
-rw-r--r-- | overlays/mautrix-signal-module.nix | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/overlays/mautrix-discord-module.nix b/overlays/mautrix-discord-module.nix index d1b2452..47fd2f6 100644 --- a/overlays/mautrix-discord-module.nix +++ b/overlays/mautrix-discord-module.nix @@ -29,7 +29,7 @@ in appservice = rec { database = "sqlite:///${dataDir}/mautrix-discord.db"; database_opts = { }; - hostname = "[::]"; + hostname = "localhost"; port = 8080; address = "http://localhost:${toString port}"; }; diff --git a/overlays/mautrix-signal-module.nix b/overlays/mautrix-signal-module.nix index 5fc2da8..58878b9 100644 --- a/overlays/mautrix-signal-module.nix +++ b/overlays/mautrix-signal-module.nix @@ -29,7 +29,7 @@ in appservice = rec { database = "sqlite:///${dataDir}/mautrix-signal.db"; database_opts = { }; - hostname = "[::]"; + hostname = "localhost"; port = 8080; address = "http://localhost:${toString port}"; }; |