From d51ae1c1b9f896eaa626774b500c1e5c8dabbae2 Mon Sep 17 00:00:00 2001 From: Yann Lacroix Date: Mon, 13 Jun 2022 22:50:10 +0200 Subject: [PATCH] Remove USE_ before authbasic plugin settings --- docs/security-tuning.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/security-tuning.md b/docs/security-tuning.md index a3c0382..7cdeb9b 100644 --- a/docs/security-tuning.md +++ b/docs/security-tuning.md @@ -303,6 +303,6 @@ You can quickly protect sensitive resources like the admin area for example by r | :-----------------------: | :---------------: | :------------------------------------------------------------------------------------------- | | `USE_AUTH_BASIC` | `no` | When set to `yes` HTTP auth basic will be enabled. | | `AUTH_BASIC_LOCATION` | `sitewide` | Location (URL) of the sensitive resource. Use special value `sitewide` to enable everywhere. | -| `USE_AUTH_BASIC_USER` | `changeme` | The username required. | -| `USE_AUTH_BASIC_PASSWORD` | `changeme` | The password required. | -| `USE_AUTH_BASIC_TEXT` | `Restricted area` | Text to display in the auth prompt. | +| `AUTH_BASIC_USER` | `changeme` | The username required. | +| `AUTH_BASIC_PASSWORD` | `changeme` | The password required. | +| `AUTH_BASIC_TEXT` | `Restricted area` | Text to display in the auth prompt. |