From a296c9bf5eabcfcf308421646aaa7c947f0c6dc4 Mon Sep 17 00:00:00 2001 From: Teck Meng Date: Wed, 31 Jul 2024 11:14:55 +0800 Subject: [PATCH] chore: Update .env.example to enable SSL for connecting to Postgres --- .env.example | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.env.example b/.env.example index 446833c..97e5c11 100644 --- a/.env.example +++ b/.env.example @@ -503,7 +503,7 @@ DATABASE_URL=postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${DATABASE__HOSTNA # DATABASE_CONNECTION_POOL_MIN= # DATABASE_CONNECTION_POOL_MAX= # Uncomment this to disable SSL for connecting to Postgres -PGSSLMODE=disable +# PGSSLMODE=disable # For redis you can either specify an ioredis compatible url like this REDIS_URL=redis://redis:6379