home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 November / CMCD1104.ISO / Software / Complet / Apache / apache_2.0.52-win32-x86-no_ssl.msi / Data.Cab / F277848_auth.xml < prev    next >
Extensible Markup Language  |  2004-05-23  |  16KB  |  361 lines

  1. <?xml version='1.0' encoding='UTF-8' ?>
  2. <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
  3. <?xml-stylesheet type="text/xsl" href="../style/manual.en.xsl"?>
  4. <!-- $Revision: 1.1.2.8 $ -->
  5.  
  6. <!--
  7.  Copyright 2003-2004 The Apache Software Foundation
  8.  
  9.  Licensed under the Apache License, Version 2.0 (the "License");
  10.  you may not use this file except in compliance with the License.
  11.  You may obtain a copy of the License at
  12.  
  13.      http://www.apache.org/licenses/LICENSE-2.0
  14.  
  15.  Unless required by applicable law or agreed to in writing, software
  16.  distributed under the License is distributed on an "AS IS" BASIS,
  17.  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  18.  See the License for the specific language governing permissions and
  19.  limitations under the License.
  20. -->
  21.  
  22. <manualpage metafile="auth.xml.meta">
  23. <parentdocument href="./">How-To / Tutorials</parentdocument>
  24.  
  25. <title>Authentication, Authorization and Access Control</title>
  26.  
  27. <summary>
  28.     <p>Authentication is any process by which you verify that
  29.     someone is who they claim they are. Authorization is any
  30.     process by which someone is allowed to be where they want to
  31.     go, or to have information that they want to have.</p>
  32. </summary>
  33.   
  34. <section id="related"><title>Related Modules and Directives</title>
  35.     <related>
  36.       <modulelist>
  37.         <module>mod_auth</module>
  38.         <module>mod_access</module>
  39.       </modulelist>
  40.  
  41.       <directivelist>
  42.         <directive module="mod_access">Allow</directive>
  43.         <directive module="mod_auth">AuthGroupFile</directive>
  44.         <directive module="core">AuthName</directive>
  45.         <directive module="core">AuthType</directive>
  46.         <directive module="mod_auth">AuthUserFile</directive>
  47.         <directive module="mod_access">Deny</directive>
  48.         <directive module="core">Options</directive>
  49.         <directive module="core">Require</directive>
  50.       </directivelist>
  51.     </related>
  52. </section>
  53.  
  54. <section id="introduction"><title>Introduction</title>
  55.     <p>If you have information on your web site that is sensitive
  56.     or intended for only a small group of people, the techniques in
  57.     this article will help you make sure that the people that see
  58.     those pages are the people that you wanted to see them.</p>
  59.  
  60.     <p>This article covers the "standard" way of protecting parts
  61.     of your web site that most of you are going to use.</p>
  62. </section>
  63.  
  64. <section id="theprerequisites"><title>The Prerequisites</title>
  65.     <p>The directives discussed in this article will need to go
  66.     either in your main server configuration file (typically in a
  67.     <directive module="core" type="section">Directory</directive> section), or
  68.     in per-directory configuration files (<code>.htaccess</code> files).</p>
  69.  
  70.     <p>If you plan to use <code>.htaccess</code> files, you will
  71.     need to have a server configuration that permits putting
  72.     authentication directives in these files. This is done with the
  73.     <directive module="core">AllowOverride</directive> directive, which
  74.     specifies which directives, if any, may be put in per-directory
  75.     configuration files.</p>
  76.  
  77.     <p>Since we're talking here about authentication, you will need
  78.     an <directive module="core">AllowOverride</directive> directive like the
  79.     following:</p>
  80.  
  81.     <example>
  82.       AllowOverride AuthConfig
  83.     </example>
  84.  
  85.     <p>Or, if you are just going to put the directives directly in
  86.     your main server configuration file, you will of course need to
  87.     have write permission to that file.</p>
  88.  
  89.     <p>And you'll need to know a little bit about the directory
  90.     structure of your server, in order to know where some files are
  91.     kept. This should not be terribly difficult, and I'll try to
  92.     make this clear when we come to that point.</p>
  93. </section>
  94.  
  95. <section id="gettingitworking"><title>Getting it working</title>
  96.     <p>Here's the basics of password protecting a directory on your
  97.     server.</p>
  98.  
  99.     <p>You'll need to create a password file. This file should be
  100.     placed somewhere not accessible from the web. This is so that
  101.     folks cannot download the password file. For example, if your
  102.     documents are served out of <code>/usr/local/apache/htdocs</code> you
  103.     might want to put the password file(s) in
  104.     <code>/usr/local/apache/passwd</code>.</p>
  105.  
  106.     <p>To create the file, use the <a
  107.     href="../programs/htpasswd.html">htpasswd</a> utility that came
  108.     with Apache. This will be located in the <code>bin</code> directory
  109.     of wherever you installed Apache. To create the file, type:</p>
  110.  
  111.     <example>
  112.       htpasswd -c /usr/local/apache/passwd/passwords rbowen
  113.     </example>
  114.  
  115.     <p><code>htpasswd</code> will ask you for the password, and
  116.     then ask you to type it again to confirm it:</p>
  117.  
  118.     <example>
  119.       # htpasswd -c /usr/local/apache/passwd/passwords rbowen<br />
  120.       New password: mypassword<br />
  121.       Re-type new password: mypassword<br />
  122.       Adding password for user rbowen
  123.     </example>
  124.  
  125.     <p>If <code>htpasswd</code> is not in your path, of course
  126.     you'll have to type the full path to the file to get it to run.
  127.     On my server, it's located at
  128.     <code>/usr/local/apache/bin/htpasswd</code></p>
  129.  
  130.     <p>Next, you'll need to configure the server to request a
  131.     password and tell the server which users are allowed access.
  132.     You can do this either by editing the <code>httpd.conf</code>
  133.     file or using an <code>.htaccess</code> file. For example, if
  134.     you wish to protect the directory
  135.     <code>/usr/local/apache/htdocs/secret</code>, you can use the
  136.     following directives, either placed in the file
  137.     <code>/usr/local/apache/htdocs/secret/.htaccess</code>, or
  138.     placed in <code>httpd.conf</code> inside a <Directory
  139.     /usr/local/apache/apache/htdocs/secret> section.</p>
  140.  
  141.     <example>
  142.       AuthType Basic<br />
  143.       AuthName "Restricted Files"<br />
  144.       AuthUserFile /usr/local/apache/passwd/passwords<br />
  145.       Require user rbowen
  146.     </example>
  147.  
  148.     <p>Let's examine each of those directives individually. The <directive
  149.     module="core">AuthType</directive> directive selects
  150.     that method that is used to authenticate the user. The most
  151.     common method is <code>Basic</code>, and this is the method
  152.     implemented by <module>mod_auth</module>. It is important to be aware,
  153.     however, that Basic authentication sends the password from the client to
  154.     the browser unencrypted. This method should therefore not be used for
  155.     highly sensitive data. Apache supports one other authentication method:
  156.     <code>AuthType Digest</code>. This method is implemented by <module
  157.     >mod_auth_digest</module> and is much more secure. Only the most recent
  158.     versions of clients are known to support Digest authentication.</p>
  159.  
  160.     <p>The <directive module="core">AuthName</directive> directive sets
  161.     the <dfn>Realm</dfn> to be used in the authentication. The realm serves
  162.     two major functions. First, the client often presents this information to
  163.     the user as part of the password dialog box. Second, it is used by the
  164.     client to determine what password to send for a given authenticated
  165.     area.</p>
  166.  
  167.     <p>So, for example, once a client has authenticated in the
  168.     <code>"Restricted Files"</code> area, it will automatically
  169.     retry the same password for any area on the same server that is
  170.     marked with the <code>"Restricted Files"</code> Realm.
  171.     Therefore, you can prevent a user from being prompted more than
  172.     once for a password by letting multiple restricted areas share
  173.     the same realm. Of course, for security reasons, the client
  174.     will always need to ask again for the password whenever the
  175.     hostname of the server changes.</p>
  176.  
  177.     <p>The <directive module="mod_auth">AuthUserFile</directive>
  178.     directive sets the path to the password file that we just
  179.     created with <code>htpasswd</code>. If you have a large number
  180.     of users, it can be quite slow to search through a plain text
  181.     file to authenticate the user on each request. Apache also has
  182.     the ability to store user information in fast database files.
  183.     The <module>mod_auth_dbm</module> module provides the <directive
  184.     module="mod_auth_dbm">AuthDBMUserFile</directive> directive. These
  185.     files can be created and manipulated with the <a
  186.     href="../programs/dbmmanage.html">dbmmanage</a> program. Many
  187.     other types of authentication options are available from third
  188.     party modules in the <a
  189.     href="http://modules.apache.org/">Apache Modules
  190.     Database</a>.</p>
  191.  
  192.     <p>Finally, the <directive module="core">Require</directive>
  193.     directive provides the authorization part of the process by
  194.     setting the user that is allowed to access this region of the
  195.     server. In the next section, we discuss various ways to use the
  196.     <directive module="core">Require</directive> directive.</p>
  197. </section>
  198.  
  199. <section id="lettingmorethanonepersonin"><title>Letting more than one
  200. person in</title>
  201.     <p>The directives above only let one person (specifically
  202.     someone with a username of <code>rbowen</code>) into the
  203.     directory. In most cases, you'll want to let more than one
  204.     person in. This is where the <directive module="mod_auth"
  205.     >AuthGroupFile</directive> comes in.</p>
  206.  
  207.     <p>If you want to let more than one person in, you'll need to
  208.     create a group file that associates group names with a list of
  209.     users in that group. The format of this file is pretty simple,
  210.     and you can create it with your favorite editor. The contents
  211.     of the file will look like this:</p>
  212.  
  213.    <example>
  214.      GroupName: rbowen dpitts sungo rshersey
  215.    </example>
  216.  
  217.     <p>That's just a list of the members of the group in a long
  218.     line separated by spaces.</p>
  219.  
  220.     <p>To add a user to your already existing password file,
  221.     type:</p>
  222.  
  223.     <example>
  224.       htpasswd /usr/local/apache/passwd/passwords dpitts
  225.     </example>
  226.  
  227.     <p>You'll get the same response as before, but it will be
  228.     appended to the existing file, rather than creating a new file.
  229.     (It's the <code>-c</code> that makes it create a new password
  230.     file).</p>
  231.  
  232.     <p>Now, you need to modify your <code>.htaccess</code> file to
  233.     look like the following:</p>
  234.  
  235.     <example>
  236.       AuthType Basic<br />
  237.       AuthName "By Invitation Only"<br />
  238.       AuthUserFile /usr/local/apache/passwd/passwords<br />
  239.       AuthGroupFile /usr/local/apache/passwd/groups<br />
  240.       Require group GroupName
  241.     </example>
  242.  
  243.     <p>Now, anyone that is listed in the group <code>GroupName</code>,
  244.     and has an entry in the <code>password</code> file, will be let in, if
  245.     they type the correct password.</p>
  246.  
  247.     <p>There's another way to let multiple users in that is less
  248.     specific. Rather than creating a group file, you can just use
  249.     the following directive:</p>
  250.  
  251.     <example>
  252.       Require valid-user
  253.     </example>
  254.  
  255.     <p>Using that rather than the <code>Require user rbowen</code>
  256.     line will allow anyone in that is listed in the password file,
  257.     and who correctly enters their password. You can even emulate
  258.     the group behavior here, by just keeping a separate password
  259.     file for each group. The advantage of this approach is that
  260.     Apache only has to check one file, rather than two. The
  261.     disadvantage is that you have to maintain a bunch of password
  262.     files, and remember to reference the right one in the
  263.     <directive module="mod_auth">AuthUserFile</directive> directive.</p>
  264. </section>
  265.  
  266. <section id="possibleproblems"><title>Possible problems</title>
  267.     <p>Because of the way that Basic authentication is specified,
  268.     your username and password must be verified every time you
  269.     request a document from the server. This is even if you're
  270.     reloading the same page, and for every image on the page (if
  271.     they come from a protected directory). As you can imagine, this
  272.     slows things down a little. The amount that it slows things
  273.     down is proportional to the size of the password file, because
  274.     it has to open up that file, and go down the list of users
  275.     until it gets to your name. And it has to do this every time a
  276.     page is loaded.</p>
  277.  
  278.     <p>A consequence of this is that there's a practical limit to
  279.     how many users you can put in one password file. This limit
  280.     will vary depending on the performance of your particular
  281.     server machine, but you can expect to see slowdowns once you
  282.     get above a few hundred entries, and may wish to consider a
  283.     different authentication method at that time.</p>
  284. </section>
  285.  
  286. <section id="whatotherneatstuffcanido"><title>What other neat stuff can I
  287. do?</title>
  288.     <p>Authentication by username and password is only part of the
  289.     story. Frequently you want to let people in based on something
  290.     other than who they are. Something such as where they are
  291.     coming from.</p>
  292.  
  293.     <p>The <directive module="mod_access">Allow</directive> and
  294.     <directive module="mod_access">Deny</directive> directives let
  295.     you allow and deny access based on the host name, or host
  296.     address, of the machine requesting a document. The
  297.     <directive module="mod_access">Order</directive> directive goes
  298.     hand-in-hand with these two, and tells Apache in which order to
  299.     apply the filters.</p>
  300.  
  301.     <p>The usage of these directives is:</p>
  302.  
  303.     <example>
  304.       Allow from <var>address</var>
  305.     </example>
  306.  
  307.     <p>where <var>address</var> is an IP address (or a partial IP
  308.     address) or a fully qualified domain name (or a partial domain
  309.     name); you may provide multiple addresses or domain names, if
  310.     desired.</p>
  311.  
  312.     <p>For example, if you have someone spamming your message
  313.     board, and you want to keep them out, you could do the
  314.     following:</p>
  315.  
  316.     <example>
  317.       Deny from 205.252.46.165
  318.     </example>
  319.  
  320.     <p>Visitors coming from that address will not be able to see
  321.     the content covered by this directive. If, instead, you have a
  322.     machine name, rather than an IP address, you can use that.</p>
  323.  
  324.     <example>
  325.       Deny from <var>host.example.com</var>
  326.     </example>
  327.  
  328.     <p>And, if you'd like to block access from an entire domain,
  329.     you can specify just part of an address or domain name:</p>
  330.  
  331.     <example>
  332.       Deny from <var>192.101.205</var><br />
  333.       Deny from <var>cyberthugs.com</var> <var>moreidiots.com</var><br />
  334.       Deny from ke
  335.     </example>
  336.  
  337.     <p>Using <directive module="mod_access">Order</directive> will let you be
  338.     sure that you are actually restricting things to the group that you want
  339.     to let in, by combining a <directive module="mod_access">Deny</directive>
  340.     and an <directive module="mod_access">Allow</directive> directive:</p>
  341.  
  342.     <example>
  343.       Order deny,allow<br />
  344.       Deny from all<br />
  345.       Allow from <var>dev.example.com</var>
  346.     </example>
  347.  
  348.     <p>Listing just the <directive module="mod_access">Allow</directive>
  349.     directive would not do what you want, because it will let folks from that
  350.     host in, in addition to letting everyone in. What you want is to let
  351.     <em>only</em> those folks in.</p>
  352. </section>
  353.  
  354. <section id="moreinformation"><title>More information</title>
  355.     <p>You should also read the documentation for <module>mod_auth</module>
  356.     and <module>mod_access</module> which contain some more information
  357.     about how this all works.</p>
  358. </section>
  359. </manualpage>
  360.  
  361.