apache:authentication:basic_authentication
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
apache:authentication:basic_authentication [2023/07/17 08:45] – peter | apache:authentication:basic_authentication [2023/07/17 08:54] (current) – peter | ||
---|---|---|---|
Line 7: | Line 7: | ||
===== Configure Apache to allow .htaccess authentication. ===== | ===== Configure Apache to allow .htaccess authentication. ===== | ||
- | By default Apache does not allow the use of .htaccess files. You will need to set up Apache to allow .htaccess based authentication. | + | By default Apache does not allow the use of .htaccess files. |
- | You can do this by editing | + | * Apache will need to be configured to allow **.htaccess** based authentication. |
+ | |||
+ | Editing | ||
<code bash> | <code bash> | ||
Line 15: | Line 17: | ||
</ | </ | ||
- | Find the section that begins with **< | + | Find the section that begins with **< |
+ | |||
+ | Change the line from **AllowOverride none** to **AllowOverride AuthConfig**. | ||
<file apache / | <file apache / | ||
Line 23: | Line 27: | ||
Save and close the file. | Save and close the file. | ||
+ | ---- | ||
===== Create a password file with htpasswd ===== | ===== 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. We will create a hidden file .htpasswd in the /etc/httpd/ configuration directory. | + | The **htpasswd** command is used to create and update the files used to store usernames and password for basic authentication of Apache users. |
- | Let's begin by creating | + | * A hidden file **.htpasswd** will need to be created in the /etc/httpd/ configuration directory. |
+ | |||
+ | For example, create | ||
<code bash> | <code bash> | ||
Line 34: | Line 41: | ||
</ | </ | ||
- | You will be asked to supply and confirm a password for user1. | + | This will prompt |
<WRAP warning> | <WRAP warning> | ||
- | **WARNING**: | + | **WARNING**: |
+ | |||
+ | * Do not use **-c** when another | ||
</ | </ | ||
- | Let's create | + | ---- |
+ | |||
+ | Create | ||
<code bash> | <code bash> | ||
- | sudo htpasswd | + | sudo htpasswd / |
</ | </ | ||
- | After creating user2, you can see the username and the encrypted password for each record: | + | ---- |
+ | |||
+ | ===== Display | ||
<code bash> | <code bash> | ||
Line 52: | Line 66: | ||
</ | </ | ||
- | The output will look something like this: | + | returns: |
< | < | ||
Line 59: | Line 73: | ||
</ | </ | ||
- | Now, you need to allow the apache user to read the .htpasswd file. | + | ---- |
+ | |||
+ | ===== Allow Apache | ||
<code bash> | <code bash> | ||
Line 66: | Line 82: | ||
</ | </ | ||
+ | ---- | ||
===== Configure Apache password authentication ===== | ===== Configure Apache password authentication ===== | ||
- | Now you need to create | + | Create |
- | For this example, | + | For example, create the .htaccess file in the / |
<code bash> | <code bash> | ||
Line 92: | Line 109: | ||
</ | </ | ||
+ | ---- | ||
===== Testing password authentication ===== | ===== Testing password authentication ===== | ||
- | After everything has been set up, it's time to test your Apache server. | + | Try to access the restricted content in a web browser by visiting the URL or static IP address. |
- | From your desktop computer, try to access | + | This will prompt for a username and password |
- | You will be prompted with a username and password to access the website. | + | <WRAP info> |
+ | **NOTE: | ||
- | If you enter the correct | + | * If the wrong credentials |
- | If you enter the wrong credentials or hit " | + | * Password |
- | + | ||
- | Your website is now secure with password authentication. | + | |
+ | </ | ||
+ | ---- | ||
===== References ===== | ===== References ===== | ||
http:// | http:// |
apache/authentication/basic_authentication.1689583547.txt.gz · Last modified: 2023/07/17 08:45 by peter