This is an old revision of the document!


Method 1. Through realm

Step 1.Create Authorization Realms DB

We will create a new one as example

Choose DB type as Password File

Set:

  1. Realm name, e.g. TEST
  2. DB Location, e.g. $VH_ROOT/conf/TESTDB

Step 2.Create Auth user

Set e.g. User/Password TEST/TEST

Step 3. Create Context

Select type as Static

Set:

  1. URI /
  2. Set Location $VH_ROOT/html/
  3. Accessible Yes
  4. Realm TEST
  5. Access Allowed *

Method 2. Through .htaccess

Add following rules into your .htaccess file.

AuthType Basic
AuthName "My Protected Area"
AuthUserFile /path/to/.htpasswd
Require valid-user
  1. AuthName can be set to any, e.g. TEST
  2. AuthUserFile need a valid file, e.g./usr/local/lsws/DEFAULT/conf/TESTDB

How to Verify

Access the site will require auth login

  • Admin
  • Last modified: 2018/06/15 19:50
  • by Eric Leu