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'