We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c94740 commit c19497fCopy full SHA for c19497f
ansible/roles/plpsql/templates/pg_hba.conf
@@ -94,7 +94,13 @@ host all all ::1/128 trust
94
95
# NB: `ssl` is neither supported nor enforced.
96
{% if 'db_active' in group_names %}
97
-host replication amsrepl {{ lookup('dig', 'amsmetadb.ooni.nu/A') }}/32 md5
+
98
+# Run active->standby replication over VPN
99
+host replication amsrepl 10.1.0.1/32 md5
100
101
+# Run active->standby replication without VPN - unused
102
+#host replication amsrepl {{ lookup('dig', 'amsmetadb.ooni.nu/A') }}/32 md5
103
104
{% endif %}
105
106
host all all all md5
0 commit comments