From f340c9c9ea48029793e8a6ced1bd1760cc0131da Mon Sep 17 00:00:00 2001 From: melbv <89152182+melbv@users.noreply.github.com> Date: Wed, 3 Aug 2022 15:04:03 +0100 Subject: [PATCH] DB port correction (#1214) Correction of the port assigned to PostGresql from '35432' to '5432' --- example.env | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/example.env b/example.env index b5193edf..d2e22b63 100644 --- a/example.env +++ b/example.env @@ -72,7 +72,7 @@ EMAIL_SERVERS_WITH_PRIORITY=[(10, "email.hostname.")] # DKIM_PRIVATE_KEY_PATH=local_data/dkim.key # DB Connection -DB_URI=postgresql://myuser:mypassword@localhost:35432/simplelogin +DB_URI=postgresql://myuser:mypassword@localhost:5432/simplelogin FLASK_SECRET=secret @@ -187,4 +187,4 @@ ALLOWED_REDIRECT_DOMAINS=[] # DNS nameservers to be used by the app # Multiple nameservers can be specified, separated by ',' NAMESERVERS="1.1.1.1" -PARTNER_API_TOKEN_SECRET="changeme" \ No newline at end of file +PARTNER_API_TOKEN_SECRET="changeme"