add host explicitly

This commit is contained in:
2025-11-19 02:36:56 -06:00
parent e3c9a75eca
commit 4de30276a8
+1 -1
View File
@@ -65,7 +65,7 @@
# allow remote connections to dev DBs # allow remote connections to dev DBs
authentication = '' authentication = ''
${lib.concatStringsSep " " (map (db: "host ${db}_dev all samenet md5\n") opts.databases) } ${lib.concatStringsSep " " (map (db: "host ${db}_dev all 10.0.0.141 md5\n") opts.databases) }
''; '';
}; };