diff options
author | zeripath <art27@cantab.net> | 2019-10-19 15:27:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-19 15:27:15 +0100 |
commit | 5a62ae5cbf47cf6537f6c95aba4b1d04dea5f5af (patch) | |
tree | 088421b1f75a9a0d95d182f3a5a339c66f5a9d1d /docs | |
parent | 280f4bebbf5883eef94d8a84b21575393ae5e0e1 (diff) | |
download | gitea-5a62ae5cbf47cf6537f6c95aba4b1d04dea5f5af.tar.gz gitea-5a62ae5cbf47cf6537f6c95aba4b1d04dea5f5af.zip |
Add setting to disable BASIC authentication (#8586)
Closes #8561.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/content/doc/advanced/config-cheat-sheet.en-us.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/content/doc/advanced/config-cheat-sheet.en-us.md b/docs/content/doc/advanced/config-cheat-sheet.en-us.md index 0df88c23e8..678f8df238 100644 --- a/docs/content/doc/advanced/config-cheat-sheet.en-us.md +++ b/docs/content/doc/advanced/config-cheat-sheet.en-us.md @@ -265,6 +265,10 @@ Values containing `#` or `;` must be quoted using `` ` `` or `"""`. - `REQUIRE_SIGNIN_VIEW`: **false**: Enable this to force users to log in to view any page. - `ENABLE_NOTIFY_MAIL`: **false**: Enable this to send e-mail to watchers of a repository when something happens, like creating issues. Requires `Mailer` to be enabled. +- `ENABLE_BASIC_AUTHENTICATION`: **true**: Disable this to disallow authenticaton using HTTP + BASIC and the user's password. Please note if you disable this you will not be able to access the + tokens API endpoints using a password. Further, this only disables BASIC authentication using the + password - not tokens or OAuth Basic. - `ENABLE_REVERSE_PROXY_AUTHENTICATION`: **false**: Enable this to allow reverse proxy authentication. - `ENABLE_REVERSE_PROXY_AUTO_REGISTRATION`: **false**: Enable this to allow auto-registration for reverse authentication. |