Skip to content

Commit

Permalink
make notation of #OIDC directives uniform for auto-comparison purposes
Browse files Browse the repository at this point in the history
cat auth_openidc.conf| grep "#OIDC" | cut -d" " -f1  | cut -d"#" -f2 |
sort | uniq > 1s.txt
cat src/cfg/cmds.c | grep OIDC | grep -v "OIDC_" | grep -v "domain" |
cut -d"," -f1 | tr -d "[:blank:]" | sort  | uniq > 2s.txt
diff 1s.txt 2s.txt
31a32
> OIDCHTMLErrorTemplate
rm -f 1s.txt 2s.txt

Signed-off-by: Hans Zandbelt <[email protected]>
  • Loading branch information
zandbelt committed Aug 28, 2024
1 parent 47ece7f commit 0cfe620
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions auth_openidc.conf
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@
# "PAR" means that parameters will be sent to the Pushed Authorization Endpoint
# When not defined the default is "GET".
# NB: this can be overridden on a per-OP basis in the .conf file using the key: auth_request_method
# OIDCProviderAuthRequestMethod [ GET | POST | PAR ]
#OIDCProviderAuthRequestMethod [ GET | POST | PAR ]

# The fully qualified names of the files that contain the PEM-formatted RSA/EC Public key or a X.509 certificates
# that contain the RSA/EC public keys to be used for JWT (OP state/id_token) encryption by the OP.
Expand Down Expand Up @@ -658,7 +658,7 @@
# least recently used entry will be overwritten. If this happens within 1 hour,
# errors will be displayed in the error.log and the OIDCCacheShmMax value may be increased.
# When not specified, a default of 10000 entries is used.
# OIDCCacheShmMax <number>
#OIDCCacheShmMax <number>

# When using OIDCCacheType "shm":
# Specifies the maximum size for a single cache entry in bytes with a minimum of 8736 bytes.
Expand All @@ -667,7 +667,7 @@
# entry size limit may be overrun, in which case errors will be displayed in the error.log
# and the OIDCCacheShmEntrySizeMax value has to be increased.
# When not specified, a default entry size of 16928 bytes (16384 value + 512 key + 32 overhead) is used.
# OIDCCacheShmEntrySizeMax <bytes>
#OIDCCacheShmEntrySizeMax <bytes>

# When using OIDCCacheType "file":
# Directory that holds cache files; must be writable for the Apache process/user.
Expand All @@ -677,7 +677,7 @@
# When using OIDCCacheType "file":
# Cache file clean interval in seconds (only triggered on writes).
# When not specified a default of 60 seconds is used.
# OIDCCacheFileCleanInterval <seconds>
#OIDCCacheFileCleanInterval <seconds>

# Required when using OIDCCacheType "memcache":
# Specifies the memcache servers used for caching as a space separated list of <hostname>[:<port>] tuples.
Expand Down

0 comments on commit 0cfe620

Please sign in to comment.