diff options
author | Rory& <root@rory.gay> | 2024-05-09 19:44:24 +0200 |
---|---|---|
committer | Rory& <root@rory.gay> | 2024-07-04 14:45:02 +0200 |
commit | f622a5dec70d5377e69656a143d178ea1d7e3eb9 (patch) | |
tree | 1aef8fa5bbcd6cca52e765509bcb57c5d619a0ee | |
parent | Sliding sync (diff) | |
download | Rory-Open-Architecture-f622a5dec70d5377e69656a143d178ea1d7e3eb9.tar.xz |
Emma, stop forgetting semicolons you dork
Diffstat (limited to '')
-rwxr-xr-x | host/Rory-nginx/services/matrix/synapse.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/host/Rory-nginx/services/matrix/synapse.nix b/host/Rory-nginx/services/matrix/synapse.nix index b5eaf2b..cd290ad 100755 --- a/host/Rory-nginx/services/matrix/synapse.nix +++ b/host/Rory-nginx/services/matrix/synapse.nix @@ -16,9 +16,9 @@ in enable = true; settings = { "SYNCV3_SERVER" = "http://localhost:8008"; - "SYNCV3_DB" = "postgresql://%2Frun%2Fpostgresql/syncv3" - "SYNCV3_BINDADDR" = "0.0.0.0:8100" - } + "SYNCV3_DB" = "postgresql://%2Frun%2Fpostgresql/syncv3"; + "SYNCV3_BINDADDR" = "0.0.0.0:8100"; + }; }; # https://matrix-org.github.io/synapse/latest/usage/configuration/config_documentation.html |