From 18257e8d07ad5996465ee4162dd8e0c31199bf90 Mon Sep 17 00:00:00 2001 From: Jakub Czajka Date: Tue, 26 Sep 2023 23:57:48 +0200 Subject: [PATCH] [postgres] Enable connections from gym_tracker. --- postgres/pg_hba.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/postgres/pg_hba.conf b/postgres/pg_hba.conf index 26552a9..bd66d91 100644 --- a/postgres/pg_hba.conf +++ b/postgres/pg_hba.conf @@ -93,6 +93,8 @@ local all postgres trust local mail_db dovecot trust host mail_db dovecot ::1/128 trust host mail_db dkim ::1/128 trust +host gym_db gym_tracker 0.0.0.0/0 md5 +host gym_db gym_tracker ::/0 md5 local matrix_db synapse_user trust # "local" is for Unix domain socket connections only local all all peer -- 2.39.5