home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / Servidores / apache_2.2.8-win32-x86-no_ssl.msi / Data1.cab / _1D5B3AD97229935D3C18EA48F7E0CE92 < prev    next >
Extensible Markup Language  |  2007-09-01  |  9KB  |  161 lines

  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head><!--
  4.         XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
  5.               This file is generated from xml source: DO NOT EDIT
  6.         XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
  7.       -->
  8. <title>Per-user web directories - Apache HTTP Server</title>
  9. <link href="../style/css/manual.css" rel="stylesheet" media="all" type="text/css" title="Main stylesheet" />
  10. <link href="../style/css/manual-loose-100pc.css" rel="alternate stylesheet" media="all" type="text/css" title="No Sidebar - Default font size" />
  11. <link href="../style/css/manual-print.css" rel="stylesheet" media="print" type="text/css" />
  12. <link href="../images/favicon.ico" rel="shortcut icon" /></head>
  13. <body id="manual-page"><div id="page-header">
  14. <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="../faq/">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p>
  15. <p class="apache">Apache HTTP Server Version 2.2</p>
  16. <img alt="" src="../images/feather.gif" /></div>
  17. <div class="up"><a href="./"><img title="<-" alt="<-" src="../images/left.gif" /></a></div>
  18. <div id="path">
  19. <a href="http://www.apache.org/">Apache</a> > <a href="http://httpd.apache.org/">HTTP Server</a> > <a href="http://httpd.apache.org/docs/">Documentation</a> > <a href="../">Version 2.2</a> > <a href="./">How-To / Tutorials</a></div><div id="page-content"><div id="preamble"><h1>Per-user web directories</h1>
  20. <div class="toplang">
  21. <p><span>Available Languages: </span><a href="../en/howto/public_html.html" title="English"> en </a> |
  22. <a href="../ja/howto/public_html.html" hreflang="ja" rel="alternate" title="Japanese"> ja </a> |
  23. <a href="../ko/howto/public_html.html" hreflang="ko" rel="alternate" title="Korean"> ko </a></p>
  24. </div>
  25.  
  26. <p>On systems with multiple users, each user can be permitted to have a
  27.     web site in their home directory using the <code class="directive"><a href="../mod/mod_userdir.html#userdir">UserDir</a></code> directive. Visitors
  28.     to a URL <code>http://example.com/~username/</code> will get content
  29.     out of the home directory of the user "<code>username</code>", out of
  30.     the subdirectory specified by the <code class="directive"><a href="../mod/mod_userdir.html#userdir">UserDir</a></code> directive.</p>
  31.  
  32. </div>
  33. <div id="quickview"><ul id="toc"><li><img alt="" src="../images/down.gif" /> <a href="#related">Per-user web directories</a></li>
  34. <li><img alt="" src="../images/down.gif" /> <a href="#userdir">Setting the file path with UserDir</a></li>
  35. <li><img alt="" src="../images/down.gif" /> <a href="#enable">Restricting what users are permitted to use this 
  36.     feature</a></li>
  37. <li><img alt="" src="../images/down.gif" /> <a href="#cgi">Enabling a cgi directory for each user</a></li>
  38. <li><img alt="" src="../images/down.gif" /> <a href="#htaccess">Allowing users to alter configuration</a></li>
  39. </ul><h3>See also</h3><ul class="seealso"><li><a href="../urlmapping.html">Mapping URLs to the Filesystem</a></li></ul></div>
  40. <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  41. <div class="section">
  42. <h2><a name="related" id="related">Per-user web directories</a></h2>
  43.     
  44.     <table class="related"><tr><th>Related Modules</th><th>Related Directives</th></tr><tr><td><ul><li><code class="module"><a href="../mod/mod_userdir.html">mod_userdir</a></code></li></ul></td><td><ul><li><code class="directive"><a href="../mod/mod_userdir.html#userdir">UserDir</a></code></li><li><code class="directive"><a href="../mod/core.html#directorymatch">DirectoryMatch</a></code></li><li><code class="directive"><a href="../mod/core.html#allowoverride">AllowOverride</a></code></li></ul></td></tr></table>
  45.     </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  46. <div class="section">
  47. <h2><a name="userdir" id="userdir">Setting the file path with UserDir</a></h2>
  48.     
  49.  
  50.     <p>The <code class="directive"><a href="../mod/mod_userdir.html#userdir">UserDir</a></code>
  51.     directive specifies a directory out of which per-user
  52.     content is loaded. This directive may take several different forms.</p>
  53.  
  54.     <p>If a path is given which does not start with a leading slash, it is
  55.     assumed to be a directory path relative to the home directory of the
  56.     specified user. Given this configuration:</p>
  57.  
  58.     <div class="example"><p><code>
  59.       UserDir public_html
  60.     </code></p></div>
  61.  
  62.     <p>the URL <code>http://example.com/~rbowen/file.html</code> will be
  63.     translated to the file path
  64.     <code>/home/rbowen/public_html/file.html</code></p>
  65.  
  66.     <p>If a path is given starting with a slash, a directory path will be
  67.     constructed using that path, plus the username specified. Given this
  68.     configuration:</p>
  69.  
  70.     <div class="example"><p><code>
  71.       UserDir /var/html
  72.     </code></p></div>
  73.  
  74.     <p>the URL <code>http://example.com/~rbowen/file.html</code> will be
  75.     translated to the file path <code>/var/html/rbowen/file.html</code></p>
  76.  
  77.     <p>If a path is provided which contains an asterisk (*), a path is used
  78.     in which the asterisk is replaced with the username. Given this
  79.     configuration:</p>
  80.  
  81.     <div class="example"><p><code>
  82.       UserDir /var/www/*/docs
  83.     </code></p></div>
  84.  
  85.     <p>the URL <code>http://example.com/~rbowen/file.html</code> will be
  86.     translated to the file path
  87.     <code>/var/www/rbowen/docs/file.html</code></p>
  88.  
  89.   </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  90. <div class="section">
  91. <h2><a name="enable" id="enable">Restricting what users are permitted to use this 
  92.     feature</a></h2>
  93.     
  94.  
  95.     <p>Using the syntax shown in the UserDir documentation, you can restrict
  96.     what users are permitted to use this functionality:</p>
  97.  
  98.     <div class="example"><p><code>
  99.       UserDir enabled<br />
  100.       UserDir disabled root jro fish
  101.     </code></p></div>
  102.  
  103.     <p>The configuration above will enable the feature for all users
  104.     except for those listed in the <code>disabled</code> statement.
  105.     You can, likewise, disable the feature for all but a few users by
  106.     using a configuration like the following:</p>
  107.  
  108.     <div class="example"><p><code>
  109.       UserDir disabled<br />
  110.       UserDir enabled rbowen krietz
  111.     </code></p></div>
  112.  
  113.     <p>See <code class="directive"><a href="../mod/mod_userdir.html#userdir">UserDir</a></code>
  114.     documentation for additional examples.</p>
  115.  
  116.   </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  117. <div class="section">
  118. <h2><a name="cgi" id="cgi">Enabling a cgi directory for each user</a></h2>
  119.   
  120.  
  121.    <p>In order to give each user their own cgi-bin directory, you can use
  122.     a <code class="directive"><a href="../mod/core.html#directory"><Directory></a></code>
  123.     directive to make a particular subdirectory of a user's home directory
  124.     cgi-enabled.</p>
  125.  
  126.     <div class="example"><p><code>
  127.       <Directory /home/*/public_html/cgi-bin/><br />
  128.        Options ExecCGI<br />
  129.        SetHandler cgi-script<br />
  130.        </Directory>
  131.     </code></p></div>
  132.  
  133.     <p>Then, presuming that <code>UserDir</code> is set to
  134.     <code>public_html</code>, a cgi program <code>example.cgi</code>
  135.     could be loaded from that directory as:</p>
  136.  
  137.     <div class="example"><p><code>
  138.     http://example.com/~rbowen/cgi-bin/example.cgi
  139.     </code></p></div>
  140.  
  141.     </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  142. <div class="section">
  143. <h2><a name="htaccess" id="htaccess">Allowing users to alter configuration</a></h2>
  144.     
  145.  
  146.     <p>If you want to allows users to modify the server configuration in
  147.     their web space, they will need to use <code>.htaccess</code> files to
  148.     make these changed. Ensure that you have set <code class="directive"><a href="../mod/core.html#allowoverride">AllowOverride</a></code> to a
  149.     value sufficient for the directives that you want to permit the users
  150.     to modify. See the <a href="htaccess.html">.htaccess tutorial</a> for
  151.     additional details on how this works.</p>
  152.  
  153.   </div></div>
  154. <div class="bottomlang">
  155. <p><span>Available Languages: </span><a href="../en/howto/public_html.html" title="English"> en </a> |
  156. <a href="../ja/howto/public_html.html" hreflang="ja" rel="alternate" title="Japanese"> ja </a> |
  157. <a href="../ko/howto/public_html.html" hreflang="ko" rel="alternate" title="Korean"> ko </a></p>
  158. </div><div id="footer">
  159. <p class="apache">Copyright 2007 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
  160. <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="../faq/">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p></div>
  161. </body></html>