Skip to content

Commit

Permalink
Merge pull request #618 from edisoncm-ti/develop
Browse files Browse the repository at this point in the history
fix: Correction to Postgres connection string in environment files
  • Loading branch information
DavidsonGomes authored May 27, 2024
2 parents bf88fdb + 3191e9b commit 7321032
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Docker/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ CHATWOOT_MESSAGE_DELETE=false # false | true
# 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.
CHATWOOT_MESSAGE_READ=false # false | true
# This db connection is used to import messages from whatsapp to chatwoot database
CHATWOOT_IMPORT_DATABASE_CONNECTION_URI=postgres://user:password@hostname:port/dbname
CHATWOOT_IMPORT_DATABASE_CONNECTION_URI=postgres://user:password@hostname:port/dbname?sslmode=disable
CHATWOOT_IMPORT_DATABASE_PLACEHOLDER_MEDIA_MESSAGE=true

CACHE_REDIS_ENABLED=false
Expand Down
2 changes: 1 addition & 1 deletion src/dev-env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ CHATWOOT:
# This db connection is used to import messages from whatsapp to chatwoot database
DATABASE:
CONNECTION:
URI: "postgres://user:password@hostname:port/dbname"
URI: "postgres://user:password@hostname:port/dbname?sslmode=disable"
PLACEHOLDER_MEDIA_MESSAGE: true

# Cache to optimize application performance
Expand Down

0 comments on commit 7321032

Please sign in to comment.