Configuring Apache with Authentication

Basic Authentication: 1. Create user database with htpasswdhtpasswd is a program which create user database. In this example we will create users in /etc/apache2/users     $ htpasswd -c /etc/apache2/users test  ===========> Here test is username 2. Server side configuration: Here in httpd.conf or your virtual host configuration file between <Directory … >  </Directory> Give following…