Skip to content

Commit 3191e9b

Browse files
fix: Correction to Postgres connection string in environment files
1 parent 70d4eb3 commit 3191e9b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Docker/.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ CHATWOOT_MESSAGE_DELETE=false # false | true
125125
# If you leave this option as true, when sending a message in Chatwoot, the client's last message will be marked as read on WhatsApp.
126126
CHATWOOT_MESSAGE_READ=false # false | true
127127
# This db connection is used to import messages from whatsapp to chatwoot database
128-
CHATWOOT_IMPORT_DATABASE_CONNECTION_URI=postgres://user:password@hostname:port/dbname
128+
CHATWOOT_IMPORT_DATABASE_CONNECTION_URI=postgres://user:password@hostname:port/dbname?sslmode=disable
129129
CHATWOOT_IMPORT_DATABASE_PLACEHOLDER_MEDIA_MESSAGE=true
130130

131131
# Defines an authentication type for the api

src/dev-env.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ CHATWOOT:
172172
# This db connection is used to import messages from whatsapp to chatwoot database
173173
DATABASE:
174174
CONNECTION:
175-
URI: "postgres://user:password@hostname:port/dbname"
175+
URI: "postgres://user:password@hostname:port/dbname?sslmode=disable"
176176
PLACEHOLDER_MEDIA_MESSAGE: true
177177

178178
# Cache to optimize application performance

0 commit comments

Comments
 (0)