aboutsummaryrefslogtreecommitdiff
path: root/Docker/FreshRSS.Apache.conf
diff options
context:
space:
mode:
authorGravatar pando85 <pando855@gmail.com> 2024-08-25 19:57:30 +0200
committerGravatar GitHub <noreply@github.com> 2024-08-25 19:57:30 +0200
commit82593f59684aa143bc02053aaa891496a8739861 (patch)
treef2605680938b83917742a9c069418ea4b079fb64 /Docker/FreshRSS.Apache.conf
parent19e1cb470e9cc531ab68681ecf1b33c3146e5934 (diff)
Fix OIDC session params definition (#6730)
* Fix OIDC session params definition - standardize environment variable names - group all in the same configuration file - use mod_auth_openidc default values - fix `OIDCSessionMaxDuration` because it was not set with the previous code - add documentation * Add double quoting to prevent globbing and word splitting * Revert line deleted by mistake
Diffstat (limited to 'Docker/FreshRSS.Apache.conf')
-rw-r--r--Docker/FreshRSS.Apache.conf6
1 files changed, 5 insertions, 1 deletions
diff --git a/Docker/FreshRSS.Apache.conf b/Docker/FreshRSS.Apache.conf
index 253f53614..86ea27915 100644
--- a/Docker/FreshRSS.Apache.conf
+++ b/Docker/FreshRSS.Apache.conf
@@ -31,6 +31,10 @@ CustomLog "|/var/www/FreshRSS/cli/sensitive-log.sh" combined_proxy
OIDCClientID ${OIDC_CLIENT_ID}
OIDCClientSecret ${OIDC_CLIENT_SECRET}
+ OIDCSessionInactivityTimeout ${OIDC_SESSION_INACTIVITY_TIMEOUT}
+ OIDCSessionMaxDuration ${OIDC_SESSION_MAX_DURATION}
+ OIDCSessionType ${OIDC_SESSION_TYPE}
+
OIDCRedirectURI /i/oidc/
OIDCCryptoPassphrase ${OIDC_CLIENT_CRYPTO_KEY}
@@ -53,7 +57,7 @@ CustomLog "|/var/www/FreshRSS/cli/sensitive-log.sh" combined_proxy
OIDCXForwardedHeaders ${OIDC_X_FORWARDED_HEADERS}
</IfDefine>
- # Can be overridden e.g. in /var/www/FreshRSS/p/i/.htaccess
+ # Can be overridden e.g. in /var/www/FreshRSS/p/i/.htaccess
OIDCRefreshAccessTokenBeforeExpiry 30
</IfDefine>