authelia/docs/configuration/regulation.md
Clément Michaud a9f8958187
[BUGFIX] Add jekyll dependency in Gemfile. (#660)
* [BUGFIX] Add jekyll dependency in Gemfile.

* [Buildkite] Optimise documentation sync step

* [DOC] Fix merge conflict for index.md

* [DOC] Fix formatting issues
2020-02-29 16:15:03 +11:00

683 B

layout title parent nav_order
default Regulation Configuration 7

Regulation

Authelia can temporarily ban accounts when there was too many authentication attempts. This helps prevent brute force attacks.

Configuration

regulation:
    # The number of failed login attempts before user is banned.
    # Set it to 0 to disable regulation.
    max_retries: 3

    # The time range during which the user can attempt login before being banned.
    # The user is banned if the authentication failed `max_retries` times in a `find_time` seconds window.
    find_time: 120

    # The length of time before a banned user can sign in again.
    ban_time: 300