We are using OpenID Connect on one of our applications, and implementing with Apache's mod_auth_openidc. Is there a way to set the expiry time of the session? Our current configuration looks like this:
OIDCProviderMetadataURL https://accounts.google.com/.well-known/openid-configuration
OIDCClientID XXXXXXXXXXXXXXXXX
OIDCClientSecret ZZZZZZZZZZZZZZZ
OIDCRedirectURI https://jZZZZZZZZ.com
OIDCCryptoPassphrase <password>
OIDCScope "openid email"
<Location />
AuthType openid-connect
require valid-user
Require claim hd:xxxxxx
</Location>