From 1ffdd3201339813c735c96d1f0be8bda0e0438e0 Mon Sep 17 00:00:00 2001 From: Charles Crossan Date: Thu, 14 Nov 2024 10:13:37 -0500 Subject: [PATCH] Update authentication.md (#14980) add detail to reset_admin_password setting --- docs/docs/configuration/authentication.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/docs/configuration/authentication.md b/docs/docs/configuration/authentication.md index 47d7e85a3..91b93cc58 100644 --- a/docs/docs/configuration/authentication.md +++ b/docs/docs/configuration/authentication.md @@ -24,6 +24,11 @@ On startup, an admin user and password are generated and printed in the logs. It In the event that you are locked out of your instance, you can tell Frigate to reset the admin password and print it in the logs on next startup using the `reset_admin_password` setting in your config file. +```yaml +auth: + reset_admin_password: true +``` + ## Login failure rate limiting In order to limit the risk of brute force attacks, rate limiting is available for login failures. This is implemented with Flask-Limiter, and the string notation for valid values is available in [the documentation](https://flask-limiter.readthedocs.io/en/stable/configuration.html#rate-limit-string-notation).