mirror of
https://github.com/nextcloud/documentation.git
synced 2026-01-02 17:59:36 +07:00
15 lines
589 B
ReStructuredText
15 lines
589 B
ReStructuredText
=========================
|
|
Resetting a user password
|
|
=========================
|
|
|
|
The Nextcloud login screen displays a **Wrong password. Reset it?** message
|
|
after a user enters an incorrect password, and then Nextcloud automatically
|
|
resets their password. However, if you are using a read-only authentication
|
|
backend such as LDAP or Active Directory, this will not work. In this case you
|
|
may specify a custom URL in your ``config.php`` file to direct your user to a
|
|
server than can handle an automatic reset::
|
|
|
|
'lost_password_link' => 'https://example.org/link/to/password/reset',
|
|
|
|
|