allow md5 connection to prod database

This commit is contained in:
2025-11-23 19:52:45 -06:00
parent 14c2f8c065
commit cf618a86d3
+1 -1
View File
@@ -71,7 +71,7 @@
# Dev can be connected to via the LAN, Prod only via localhost
${lib.concatStringsSep " " (map (db: "host ${db}_dev ${db}_devuser samenet md5\n") opts.databases) }
${lib.concatStringsSep " " (map (db: "local ${db} ${db}_produser md5\n") opts.databases) }
${lib.concatStringsSep " " (map (db: "host ${db} ${db}_produser 127.0.0.1 md5\n") opts.databases) }
'';
};