summaryrefslogtreecommitdiff
path: root/modules/nixos/matrix-synapse.nix
diff options
context:
space:
mode:
authorandromeda <andromeda@lenovo>2026-01-13 10:55:24 +0100
committerandromeda <andromeda@lenovo>2026-01-13 10:55:24 +0100
commitc0e92a4ef3e61f4589d32b7b5dc7814a60c99540 (patch)
treee09ceca7d7afb9053ea72048715c157fccaa4a72 /modules/nixos/matrix-synapse.nix
parentb754a3d53f85798fa2ba3d4f92a11cb7ca1824d3 (diff)
typo
Diffstat (limited to 'modules/nixos/matrix-synapse.nix')
-rw-r--r--modules/nixos/matrix-synapse.nix18
1 files changed, 9 insertions, 9 deletions
diff --git a/modules/nixos/matrix-synapse.nix b/modules/nixos/matrix-synapse.nix
index 3966cd4..f47c4f4 100644
--- a/modules/nixos/matrix-synapse.nix
+++ b/modules/nixos/matrix-synapse.nix
@@ -28,15 +28,15 @@ in {
locations."= /.well-known/matrix/server".extraConfig = mkWellKnown serverConfig;
locations."= /.well-known/matrix/client".extraConfig = mkWellKnown clientConfig;
};
- };
- "${fqdn}" = {
- enableACME = true;
- forceSSL = true;
- locations."/".extraConfig = ''
- return 404;
- '';
- locations."/_matrix".proxyPass = "http://[::1]:8008";
- locations."/_synapse/client".proxyPass = "http://[::1]:8008";
+ "${fqdn}" = {
+ enableACME = true;
+ forceSSL = true;
+ locations."/".extraConfig = ''
+ return 404;
+ '';
+ locations."/_matrix".proxyPass = "http://[::1]:8008";
+ locations."/_synapse/client".proxyPass = "http://[::1]:8008";
+ };
};
};
services.matrix-synapse = {