We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5f3e8c commit 2a46030Copy full SHA for 2a46030
backend/config/settings/base.py
@@ -105,7 +105,10 @@
105
"PASSWORD": os.getenv("POSTGRES_PASSWORD", "your-supabase-password"),
106
"HOST": os.getenv("POSTGRES_HOST", "your-project.supabase.co"),
107
"PORT": os.getenv("POSTGRES_PORT", "6543"),
108
- "OPTIONS": {"options": "-c pool_mode=session"},
+ "OPTIONS": {
109
+ "options": "-c pool_mode=session",
110
+ "sslmode": "require",
111
+ },
112
}
113
114
else:
0 commit comments