frame

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Sign In Register

How to Setup Password Authentication with Apache on Ubuntu 20.04?

IevazIevaz Administrator

Apache is a free, open-source webserver. Any user can access your application over the Internet when it is hosted on an Apache webserver.

In some cases, you might need to secure your application, that only authenticated users can access the application hosted on your server. You can protect your application by using Apache htpasswd.

So in this tutorial, we will show you how to set up the password authentication with Apache on Ubuntu 20.04

  1. Connect to your server as a root and update your base system with the latest available packages:

apt-get update -y

  1. Then install Apache:

apt-get install apache2 apache2-utils -y

  1. After installing Apache, run the following commands to start the Apache service and enable it to start after system reboot:

systemctl start apache2
systemctl enable apache2

  1. Then open your browser and navigate to the URL http://your-server-ip. You should see your default Apache web page:

  1. Now you need to create a password file so that Apache can use to authenticate users. You can create a hidden .htpasswd file withing /etc/apache2 directory for a user named test_user using the htpasswd utility:

htpasswd -c /etc/apache2/.htpasswd test_user

  1. Now enter the chosen password for your test_user:

This will create a .htpasswd file with user credentials. Those credentials will be used to access your site.

  1. Now you need to create a directory for your website with the following command:

mkdir /var/www/html/domain_name

  1. Now create an index.html file inside your web directory:

nano /var/www/html/domain_name/index.html

  1. Then add the following content there:

  1. Now change the ownership of your web directory to www-data:

chown -R www-data:www-data /var/www/html/domain_name

  1. Now you need to create an Apache virtual host configuration file for your website and define basic authentication:

nano /etc/apache2/sites-available/domain.conf

  1. There add the following lines:

< VirtualHost *:80>
ServerAdmin webmaster@domain_name
ServerName domain_name
DocumentRoot /var/www/html/domain_name
DirectoryIndex index.html
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
< Directory "/var/www/html/domain_name">
AuthType Basic
AuthName "Restricted Content"
AuthUserFile /etc/apache2/.htpasswd
Require valid-user
< /Directory>
< /VirtualHost>

  1. Ater that, check the Apache for any syntax errors with the following command:

apachectl -t

You should get the output:

  1. Tehn enable the Apache virtual host file for your website with the following command:

a2ensite example.conf

  1. And restart Apache:

systemctl restart apache2

Now your site should be secured with Apache basic authentication.

  1. To check it, open your web browser and type the URL http://domain_name.

  1. Then enter your username and password and click on the Sign in button. You should see your website default page:

Sign In or Register to comment.

Time4VPS

Learn how to install a web and database server, email, FTP client or other applications. Discover and share information on server security or optimization recommendations.
Feel free to join our constantly expanding community, participate in discussions, strengthen your knowledge on Linux and Windows server management!
© 2013 - 2024 Time4VPS. All rights reserved.

Get In Touch