From 43406e24648c6a08f3fb23224df52ac1d1edee68 Mon Sep 17 00:00:00 2001 From: MattStockdale Date: Tue, 22 Apr 2025 08:01:36 -0400 Subject: [PATCH] website/docs: fix postgres pool recommended settings (#14149) --- website/docs/install-config/configuration/configuration.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/install-config/configuration/configuration.mdx b/website/docs/install-config/configuration/configuration.mdx index 8f81b1681c..4d6e73d082 100644 --- a/website/docs/install-config/configuration/configuration.mdx +++ b/website/docs/install-config/configuration/configuration.mdx @@ -123,7 +123,7 @@ When your PostgreSQL database(s) are running behind a connection pooler, like Pg - `AUTHENTIK_POSTGRESQL__DISABLE_SERVER_SIDE_CURSORS` - Using a connection pooler in transaction pool mode (e.g. PgPool, or PgBouncer in transaction or statement pool mode) requires disabling server-side cursors, so this setting must be set to `false`. + Using a connection pooler in transaction pool mode (e.g. PgPool, or PgBouncer in transaction or statement pool mode) requires disabling server-side cursors, so this setting must be set to `true`. Additionally, you can set `AUTHENTIK_POSTGRESQL__CONN_HEALTH_CHECKS` to perform health checks on persistent database connections before they are reused.