|
Apache HTTP Server Version 2.0 ![]() Authentication, Authorization and Access ControlAuthentication is any process by which you verify that someone is who they claim they are. Authorization is any process by which someone is allowed to be where they want to go, or to have information that they want to have. Related Modules and Directives
IntroductionIf you have information on your web site that is sensitive or intended for only a small group of people, the techniques in this article will help you make sure that the people that see those pages are the people that you wanted to see them. This article covers the "standard" way of protecting parts of your web site that most of you are going to use. The PrerequisitesThe directives discussed in this article will need to go
either in your main server configuration file (typically in a
If you plan to use Since we're talking here about authentication, you will need
an
Or, if you are just going to put the directives directly in your main server configuration file, you will of course need to have write permission to that file. And you'll need to know a little bit about the directory structure of your server, in order to know where some files are kept. This should not be terribly difficult, and I'll try to make this clear when we come to that point. Getting it workingHere's the basics of password protecting a directory on your server. You'll need to create a password file. This file should be
placed somewhere not accessible from the web. This is so that
folks cannot download the password file. For example, if your
documents are served out of To create the file, use the htpasswd utility that came
with Apache. This be located in the
If Next, you'll need to configure the server to request a
password and tell the server which users are allowed access.
You can do this either by editing the
Let's examine each of those directives individually. The The So, for example, once a client has authenticated in the
The Finally, the Letting more than one person inThe directives above only let one person (specifically
someone with a username of If you want to let more than one person in, you'll need to create a group file that associates group names with a list of users in that group. The format of this file is pretty simple, and you can create it with your favorite editor. The contents of the file will look like this:
That's just a list of the members of the group in a long line separated by spaces. To add a user to your already existing password file, type:
You'll get the same response as before, but it will be
appended to the existing file, rather than creating a new file.
(It's the Now, you need to modify your
Now, anyone that is listed in the group There's another way to let multiple users in that is less specific. Rather than creating a group file, you can just use the following directive:
Using that rather than the Possible problemsBecause of the way that Basic authentication is specified, your username and password must be verified every time you request a document from the server. This is even if you're reloading the same page, and for every image on the page (if they come from a protected directory). As you can imagine, this slows things down a little. The amount that it slows things down is proportional to the size of the password file, because it has to open up that file, and go down the list of users until it gets to your name. And it has to do this every time a page is loaded. A consequence of this is that there's a practical limit to how many users you can put in one password file. This limit will vary depending on the performance of your particular server machine, but you can expect to see slowdowns once you get above a few hundred entries, and may wish to consider a different authentication method at that time. What other neat stuff can I do?Authentication by username and password is only part of the story. Frequently you want to let people in based on something other than who they are. Something such as where they are coming from. The The usage of these directives is:
where address is an IP address (or a partial IP address) or a fully qualified domain name (or a partial domain name); you may provide multiple addresses or domain names, if desired. For example, if you have someone spamming your message board, and you want to keep them out, you could do the following:
Visitors coming from that address will not be able to see the content covered by this directive. If, instead, you have a machine name, rather than an IP address, you can use that.
And, if you'd like to block access from an entire domain, you can specify just part of an address or domain name:
Using
Listing just the More informationYou should also read the documentation for |
|
This apache manual Copyright © 1999-2003, The Apache Software Foundation.
Web Design Copyright © 1999-2003. Chrisranjana Software Solutions Pvt Ltd. syndicate rss feed |