From 327326622b7a21f5e061181ef3fe3ded48d20bec Mon Sep 17 00:00:00 2001 From: Ivan Zolotuhin Date: Fri, 14 Aug 2026 12:16:29 +0300 Subject: [PATCH 1/2] Redis prefix for session keys --- docs/v2/configuration/authentication.mdx | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/v2/configuration/authentication.mdx b/docs/v2/configuration/authentication.mdx index 60d28b1..8d1cf7f 100644 --- a/docs/v2/configuration/authentication.mdx +++ b/docs/v2/configuration/authentication.mdx @@ -121,6 +121,7 @@ authentication: port: 6379 db: 0 password: password + prefix: "flipt" # Optional: prefix added to all session keys, e.g. "flipt:auth:...". Default: "auth:..." ``` The `mode` parameter is **required** and must be set to either: From 7d557777ebf53ce59349542d67ceb63d08ade67f Mon Sep 17 00:00:00 2001 From: Ivan Zolotuhin Date: Fri, 14 Aug 2026 12:28:48 +0300 Subject: [PATCH 2/2] Move prefix to schema --- docs/v2/configuration/authentication.mdx | 1 - docs/v2/configuration/overview.mdx | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/v2/configuration/authentication.mdx b/docs/v2/configuration/authentication.mdx index 8d1cf7f..60d28b1 100644 --- a/docs/v2/configuration/authentication.mdx +++ b/docs/v2/configuration/authentication.mdx @@ -121,7 +121,6 @@ authentication: port: 6379 db: 0 password: password - prefix: "flipt" # Optional: prefix added to all session keys, e.g. "flipt:auth:...". Default: "auth:..." ``` The `mode` parameter is **required** and must be set to either: diff --git a/docs/v2/configuration/overview.mdx b/docs/v2/configuration/overview.mdx index ffbb939..8653a66 100644 --- a/docs/v2/configuration/overview.mdx +++ b/docs/v2/configuration/overview.mdx @@ -321,6 +321,7 @@ Authentication configuration controls how users and systems authenticate with Fl | authentication.session.storage.redis.db | Redis database to use | 0 | v2.0.0 | | authentication.session.storage.redis.username | Username to access the Redis database | | v2.0.0 | | authentication.session.storage.redis.password | Password to access the Redis database | | v2.0.0 | +| authentication.session.storage.redis.prefix | Prefix added to all session keys | | v2.0.0 | | authentication.session.storage.redis.require_tls | Require TLS to access the Redis database | false | v2.0.0 | | authentication.session.storage.redis.pool_size | Max number of socket connections per CPU | 10 | v2.0.0 | | authentication.session.storage.redis.min_idle_conn | Minimum number of idle connections in the pool | 0 | v2.0.0 |