Skip to content

Commit

Permalink
add Valkey notion to all Redis options
Browse files Browse the repository at this point in the history
Signed-off-by: Hans Zandbelt <[email protected]>
  • Loading branch information
zandbelt committed Sep 4, 2024
1 parent 3644ffe commit cafadb0
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions auth_openidc.conf
Original file line number Diff line number Diff line change
Expand Up @@ -644,7 +644,7 @@
# - temporary state associated with Request URI's
# - signed JWTs when using OIDCPassUserInfoAs signed_jwt and environment variable OIDC_USERINFO_SIGNED_JWT_CACHE_TTL
# - JQ filter results when using OIDCFilterClaimsExpr and/or OIDCUserInfoClaimsExpr and/or Require claims_expr
# must be one of \"shm\", \"memcache\", \"file\" or, if Redis support is compiled in, \"redis\"
# must be one of \"shm\", \"memcache\", \"file\" or, if Redis/Valkey support is compiled in, \"redis\"
# When not defined, "shm" (shared memory) is used.
#OIDCCacheType [shm|memcache|file[|redis]]

Expand Down Expand Up @@ -701,32 +701,32 @@
# set in milliseconds. Defaults to 60 seconds.
#OIDCMemCacheConnectionsTTL <seconds>

# Required if Redis support is compiled in and when using OIDCCacheType "redis":
# Specifies the Redis server used for caching as a <hostname>[:<port>] tuple.
# Required if Redis/Valkey support is compiled in and when using OIDCCacheType "redis":
# Specifies the Redis/Valkey server used for caching as a <hostname>[:<port>] tuple.
#OIDCRedisCacheServer <hostname>[:<port>]

# Password to be used if the Redis server requires authentication: http://redis.io/commands/auth
# Password to be used if the Redis/Valkey server requires authentication: http://redis.io/commands/auth
# When not specified, no authentication is performed.
#OIDCRedisCachePassword <password>

# Username to be used if the Redis server requires authentication: http://redis.io/commands/auth
# NB: this can only used with Redis 6 (ACLs) or later
# Username to be used if the Redis/Valkey server requires authentication: http://redis.io/commands/auth
# NB: this can only used with Redis/Valkey 6 (ACLs) or later
# When not specified, the implicit user "default" is used
#OIDCRedisCacheUsername <username>

# Logical database to select on the Redis server: https://redis.io/commands/select
# Logical database to select on the Redis/Valkey server: https://redis.io/commands/select
# When not defined the default database 0 is used.
#OIDCRedisCacheDatabase <number>

# Timeout (in seconds) for connecting to the Redis servers.
# Timeout (in seconds) for connecting to the Redis/Valkey server.
# An optional 2nd parameter can be supplied to set the keepalive interval (in seconds) on the
# TCP connection to the Redis server. 0 disables keepalive.
# TCP connection to the Redis/Valkey server. 0 disables keepalive.
# NB: the interval setting only works when compiled and running with hiredis >= 1.2.0
# when compiled and running with hiredis < 1.2.0 any value > 0 will apply the default interval
# When not defined the default connect timeout is 5 seconds and the default hiredis keepalive (15s) is applied.
#OIDCRedisCacheConnectTimeout <connect-timeout> [0|<keep-alive-interval>]

# Timeout waiting for a response of the Redis servers after a request was sent.
# Timeout waiting for a response of the Redis/Valkey server after a request was sent.
# When not defined the default timeout is 5 seconds.
#OIDCRedisCacheTimeout <seconds>

Expand Down

0 comments on commit cafadb0

Please sign in to comment.