Dr. Dobb's is part of the Informa Tech Division of Informa PLC

This site is operated by a business or businesses owned by Informa PLC and all copyright resides with them. Informa PLC's registered office is 5 Howick Place, London SW1P 1WG. Registered in England and Wales. Number 8860726.


Channels ▼
RSS

Internal Security: Rules and Risks (Web Techniques, July 2001)


Web Techniques: Sidebar


Configuring mod_auth in Apache

Configuring Apache's mod_auth module is fairly easy and straightforward. First you'll need to create the file that will store usernames and passwords for everyone who will have access to your site (sometimes called the credentials database). Do this by running the program htpasswd, supplied in the support directory of Apache. If it has not already been built, check your Apache documentation for instructions on how to compile it.

In this example, we'll add a user named "paul" to the system and store the information in the file /usr/local/etc/httpd/users:

htpasswd -c /usr/local/etc/httpd/users paul

Note that here we're using the -c argument, which tells htpasswd to create a new credentials database. Other users may be added in the same way, except that the -c argument should not be used once the file exists.

After running this command, you'll be prompted twice to enter a new password for user "paul". The program can also be used to modify the password of an existing user.

After adding a few users, /usr/local/etc/httpd/users might look something like:

paul:WrU808BHQai33
joan:iABCQFQs4032M
jason:Fdf3N3W753sSU

The first field is the username, and the second field is the encrypted password.

Next, create a file named .htaccess in the directory to which access will be restricted. The directives in this file will describe the access controls you want imposed. Those same controls will automatically apply to any subdirectories beneath it as well, unless one of those subdirectories contains its own .htaccess file.

A sample .htaccess file might look something like this:

AuthName "restricted information"
AuthType Basic
AuthUserFile /usr/local/etc/httpd/users
require valid-user

The first directive, AuthName, specifies a name for the realm that is being protected. Once a user has been authenticated, all resources within the realm can be accessed.

AuthType specifies what type of HTTP authentication protocol to use. Typically there are two options: Basic and Digest (see article for more details).

AuthUserFile tells Apache where to find the credentials database (the file you created using htpasswd).

The final directive tells the server which usernames are allowed access to the protected realm. By specifying valid-user here, we're saying that any user found in the credentials database should be given access. You can restrict access to fewer individuals by specifying their usernames as part of the require directive. For example:

require paul, joan

This would allow only users paul and joan to access the protected realm.

You will also want to make sure that the .htaccess file is hidden from Web clients. The following entry in the httpd.conf file will guarantee this:

<code>
<Files ~ "^\.ht">
Order allow,deny
    Deny from all
<Files>
</code>

This will also prevent .htpasswd files from being seen by Web clients. Most Apache distributions come preconfigured in this way.

--PS



Related Reading


More Insights






Currently we allow the following HTML tags in comments:

Single tags

These tags can be used alone and don't need an ending tag.

<br> Defines a single line break

<hr> Defines a horizontal line

Matching tags

These require an ending tag - e.g. <i>italic text</i>

<a> Defines an anchor

<b> Defines bold text

<big> Defines big text

<blockquote> Defines a long quotation

<caption> Defines a table caption

<cite> Defines a citation

<code> Defines computer code text

<em> Defines emphasized text

<fieldset> Defines a border around elements in a form

<h1> This is heading 1

<h2> This is heading 2

<h3> This is heading 3

<h4> This is heading 4

<h5> This is heading 5

<h6> This is heading 6

<i> Defines italic text

<p> Defines a paragraph

<pre> Defines preformatted text

<q> Defines a short quotation

<samp> Defines sample computer code text

<small> Defines small text

<span> Defines a section in a document

<s> Defines strikethrough text

<strike> Defines strikethrough text

<strong> Defines strong text

<sub> Defines subscripted text

<sup> Defines superscripted text

<u> Defines underlined text

Dr. Dobb's encourages readers to engage in spirited, healthy debate, including taking us to task. However, Dr. Dobb's moderates all comments posted to our site, and reserves the right to modify or remove any content that it determines to be derogatory, offensive, inflammatory, vulgar, irrelevant/off-topic, racist or obvious marketing or spam. Dr. Dobb's further reserves the right to disable the profile of any commenter participating in said activities.

 
Disqus Tips To upload an avatar photo, first complete your Disqus profile. | View the list of supported HTML tags you can use to style comments. | Please read our commenting policy.