From 1415c5f58347edff049c47c450bc8420353423ff Mon Sep 17 00:00:00 2001 From: Alexander Tratsevskiy Date: Wed, 9 Nov 2022 18:12:49 +0300 Subject: [PATCH] =?UTF-8?q?taiga:=20=D0=B0=D0=B2=D1=82=D0=BE=D1=80=D0=B8?= =?UTF-8?q?=D0=B7=D0=B0=D1=86=D0=B8=D1=8F=20=D0=B2=20postgresql=20=D0=BF?= =?UTF-8?q?=D0=BE=20=D0=BF=D0=B0=D1=80=D0=BE=D0=BB=D1=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- profiles/templates/taiga/postgresql/etc-12/pg_hba.conf | 6 +++--- profiles/templates/taiga/taiga/config.taiga | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/profiles/templates/taiga/postgresql/etc-12/pg_hba.conf b/profiles/templates/taiga/postgresql/etc-12/pg_hba.conf index d743b59..ab6594f 100644 --- a/profiles/templates/taiga/postgresql/etc-12/pg_hba.conf +++ b/profiles/templates/taiga/postgresql/etc-12/pg_hba.conf @@ -3,8 +3,8 @@ # TYPE DATABASE USER ADDRESS METHOD # "local" is for Unix domain socket connections only -local all all trust +local all all password # IPv4 local connections: -host all all 127.0.0.1/32 trust +host all all 127.0.0.1/32 password # IPv6 local connections: -host all all ::1/128 trust +host all all ::1/128 password diff --git a/profiles/templates/taiga/taiga/config.taiga b/profiles/templates/taiga/taiga/config.taiga index 5fcb4f9..33531c3 100644 --- a/profiles/templates/taiga/taiga/config.taiga +++ b/profiles/templates/taiga/taiga/config.taiga @@ -2,7 +2,7 @@ PROTOCOL='http' TAIGA_SITES_DOMAIN='taiga.example.org' FROM_EMAIL='taiga@example.org' -SMTP_HOST='smtp@example.org' +SMTP_HOST='smtp.example.org' SMTP_PORT=25 SMTP_TLS='False' SMTP_SSL='False'