diff options
author | TheArcaneBrony <myrainbowdash949@gmail.com> | 2022-12-26 19:47:54 +0100 |
---|---|---|
committer | TheArcaneBrony <myrainbowdash949@gmail.com> | 2022-12-26 19:47:54 +0100 |
commit | c57d3cb39f858605a5acfc670376eb2b1c8f655d (patch) | |
tree | 654941355972171a4fd3791f77cb10564158fd1e /host | |
parent | Add postgres data dir (diff) | |
download | Rory-Open-Architecture-c57d3cb39f858605a5acfc670376eb2b1c8f655d.tar.xz |
Fix pg_hba
Signed-off-by: TheArcaneBrony <myrainbowdash949@gmail.com>
Diffstat (limited to 'host')
-rw-r--r-- | host/Rory-postgres/configuration.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/Rory-postgres/configuration.nix b/host/Rory-postgres/configuration.nix index 96cca4c..7531b62 100644 --- a/host/Rory-postgres/configuration.nix +++ b/host/Rory-postgres/configuration.nix @@ -29,7 +29,7 @@ host all all 127.0.0.1/32 trust host all all ::1/128 trust host discordbots discordbots 192.168.1.1/24 trust - host all all 0.0.0.0 md5 + host all all 0.0.0.0/0 md5 ''; # initialScript = pkgs.writeText "backend-initScript" '' # CREATE ROLE nixcloud WITH LOGIN PASSWORD 'nixcloud' CREATEDB; |