summary refs log tree commit diff
diff options
context:
space:
mode:
authorTheArcaneBrony <myrainbowdash949@gmail.com>2022-12-26 19:47:54 +0100
committerTheArcaneBrony <myrainbowdash949@gmail.com>2022-12-26 19:47:54 +0100
commitc57d3cb39f858605a5acfc670376eb2b1c8f655d (patch)
tree654941355972171a4fd3791f77cb10564158fd1e
parentAdd postgres data dir (diff)
downloadRory-Open-Architecture-c57d3cb39f858605a5acfc670376eb2b1c8f655d.tar.xz
Fix pg_hba
Signed-off-by: TheArcaneBrony <myrainbowdash949@gmail.com>
-rw-r--r--host/Rory-postgres/configuration.nix2
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;