apache:authentication:basic_authentication
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
apache:authentication:basic_authentication [2023/07/17 08:45] – created peter | apache:authentication:basic_authentication [2023/07/17 08:54] (current) – peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Apache - Authentication - Basic Authentication ====== | ====== Apache - Authentication - Basic Authentication ====== | ||
+ | To restrict access to certain HTTP resources, create two files: .htaccess and .htpasswd (or equivalent per httpd.conf setting). | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Configure Apache to allow .htaccess authentication. ===== | ||
+ | |||
+ | By default Apache does not allow the use of .htaccess files. | ||
+ | |||
+ | * Apache will need to be configured to allow **.htaccess** based authentication. | ||
+ | |||
+ | Editing the Apache config file: | ||
+ | |||
+ | <code bash> | ||
+ | sudo vi / | ||
+ | </ | ||
+ | |||
+ | Find the section that begins with **< | ||
+ | |||
+ | Change the line from **AllowOverride none** to **AllowOverride AuthConfig**. | ||
+ | |||
+ | <file apache / | ||
+ | AllowOverride AuthConfig | ||
+ | </ | ||
+ | |||
+ | Save and close the file. | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Create a password file with htpasswd ===== | ||
+ | |||
+ | The **htpasswd** command is used to create and update the files used to store usernames and password for basic authentication of Apache users. | ||
+ | |||
+ | * A hidden file **.htpasswd** will need to be created in the /etc/httpd/ configuration directory. | ||
+ | |||
+ | For example, create a .htpasswd file for user1. | ||
+ | |||
+ | <code bash> | ||
+ | sudo htpasswd -c / | ||
+ | </ | ||
+ | |||
+ | This will prompt to supply and confirm a password for user1. | ||
+ | |||
+ | <WRAP warning> | ||
+ | **WARNING**: | ||
+ | |||
+ | * Do not use **-c** when another user is added in the future. | ||
+ | |||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | Create another user named user2: | ||
+ | |||
+ | <code bash> | ||
+ | sudo htpasswd / | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Display the username and encrypted password for each user ===== | ||
+ | |||
+ | <code bash> | ||
+ | sudo cat / | ||
+ | </ | ||
+ | |||
+ | returns: | ||
+ | |||
+ | < | ||
+ | user1: | ||
+ | user2: | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Allow Apache to read the .htpasswd file ===== | ||
+ | |||
+ | <code bash> | ||
+ | sudo chown apache: | ||
+ | sudo chmod 0660 / | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Configure Apache password authentication ===== | ||
+ | |||
+ | Create a **.htaccess** file in the web directory which is to be restricted. | ||
+ | |||
+ | For example, create the .htaccess file in the / | ||
+ | |||
+ | <code bash> | ||
+ | sudo vi / | ||
+ | </ | ||
+ | |||
+ | Add the following content: | ||
+ | |||
+ | <file apache / | ||
+ | AuthType Basic | ||
+ | AuthName " | ||
+ | AuthUserFile / | ||
+ | Require valid-user | ||
+ | </ | ||
+ | |||
+ | Save and close the file, then restart Apache to make these changes take effect. | ||
+ | |||
+ | <code bash> | ||
+ | sudo apachectl restart | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Testing password authentication ===== | ||
+ | |||
+ | Try to access the restricted content in a web browser by visiting the URL or static IP address. | ||
+ | |||
+ | This will prompt for a username and password to access the website. | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | * If the wrong credentials or entered, or **Cancel** is pressed, this should show the **Unauthorized** error page. | ||
+ | |||
+ | * Password protection should be combined with SSL, so that the credentials are not sent to the server in plain text. | ||
+ | |||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== References ===== | ||
+ | |||
+ | http:// |
apache/authentication/basic_authentication.1689583512.txt.gz · Last modified: 2023/07/17 08:45 by peter