diff options
author | Rory&::Emma <root@rory.gay> | 2023-06-18 00:41:59 +0000 |
---|---|---|
committer | Rory&::Emma <root@rory.gay> | 2023-06-18 00:41:59 +0000 |
commit | 9701fd1fc4547cf12f7322a5894fae3fd73304b1 (patch) | |
tree | d30374f1102a76a6b220b15adf7fd9a81098df23 | |
parent | Move postgres to nginx (diff) | |
download | Rory-Open-Architecture-9701fd1fc4547cf12f7322a5894fae3fd73304b1.tar.xz |
Update db location for synapse
-rwxr-xr-x | host/Rory-synapse/software.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/Rory-synapse/software.nix b/host/Rory-synapse/software.nix index 81b7e5c..4b6506c 100755 --- a/host/Rory-synapse/software.nix +++ b/host/Rory-synapse/software.nix @@ -71,7 +71,7 @@ # PostgreSQL instead: database = { # filename = ""; # empty value to disable sqlite - connString = "postgres://postgres@192.168.1.3/matrix-appservice-discord"; + connString = "postgres://postgres@127.0.0.1/matrix-appservice-discord"; }; }; }; @@ -116,7 +116,7 @@ #passwordFile = "/run/secrets/matrix-synapse-password"; password = "somepassword"; database = "matrix-synapse-rory-gay"; - host = "192.168.1.3"; + host = "127.0.0.1"; }; }; app_service_config_files = [ |