docs/content/configuration/first-factor/introduction.md
There are two ways to integrate Authelia with an authentication backend:
{{< config-alert-example >}}
authentication_backend:
refresh_interval: '5m'
password_reset:
disable: false
custom_url: ''
password_change:
disable: false
This section describes the individual configuration options.
{{< confkey type="string,integer" syntax="duration" default="5 minutes" required="no">}}
{{< callout context="note" title="Note" icon="outline/info-circle" >}}
When using the File Provider this value has a default value of always as the cost in this
scenario is basically not measurable, users can, however, override this setting by setting an explicit value.
{{< /callout >}}
This setting controls the interval at which details are refreshed from the backend. The details refreshed in order of importance are the groups, email address, and display name. This is particularly useful for the File Provider when watch is enabled or generally with the LDAP Provider.
In addition to the duration values this option accepts always and disable as values; where always will always
refresh this value, and disable will never refresh the profile.
{{< confkey type="boolean" default="false" required="no" >}}
This setting controls if users can reset their password from the web frontend or not.
{{< confkey type="string" required="no" >}}
The custom password reset URL. This replaces the inbuilt password reset functionality and disables the endpoints if this is configured to anything other than nothing or an empty string.
{{< confkey type="boolean" default="false" required="no" >}}
This setting controls if users can change their password from the web frontend or not.
The file authentication provider.
The LDAP authentication provider.