Identity validation config example is invalid #7124
Replies: 2 comments
-
|
Please note this response was created using generative AI leveraging previously available information from the repository. This information may be helpful however it is our strong recommendation that you carefully consider the information before blindly applying it. To address the issue with the invalid configuration key This key is used to specify the duration for which the JWT is valid after being initially generated, ensuring that users cannot perform a reset password flow without first being adequately identified. The correct configuration should look something like this in the identity_validation:
reset_password:
jwt_lifespan: '5 minutes'
jwt_algorithm: 'HS256'
jwt_secret: 'your_jwt_secret_here'It's crucial to ensure that the configuration aligns with the latest documentation and examples provided by Authelia to avoid issues with deprecated or incorrect configuration keys. If you encounter a configuration key that is not recognized or deprecated, it's advisable to consult the latest version of the documentation or the Authelia GitHub repository for updates or clarifications. This comment was generated by Glime. |
Beta Was this translation helpful? Give feedback.
-
|
Thanks, this has been adjusted. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
The config example at https://www.authelia.com/configuration/identity-validation/introduction/ provides an invalid key
identity_validation.reset_password.expirationthat should be updated toidentity_validation.reset_password.jwt_lifespanBeta Was this translation helpful? Give feedback.
All reactions