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