]> granicus.if.org Git - apache/blob - docs/manual/howto/public_html.html.en
update transformation
[apache] / docs / manual / howto / public_html.html.en
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.1</p>
16 <img alt="" src="../images/feather.gif" /></div>
17 <div class="up"><a href="./"><img title="&lt;-" alt="&lt;-" src="../images/left.gif" /></a></div>
18 <div id="path">
19 <a href="http://www.apache.org/">Apache</a> &gt; <a href="http://httpd.apache.org/">HTTP Server</a> &gt; <a href="http://httpd.apache.org/docs-project/">Documentation</a> &gt; <a href="../">Version 2.1</a> &gt; <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">&nbsp;en&nbsp;</a> |
22 <a href="../ja/howto/public_html.html" hreflang="ja" rel="alternate" title="Japanese">&nbsp;ja&nbsp;</a></p>
23 </div>
24
25 <p>On systems with multiple users, each user can be permitted to have a
26     web site in their home directory using the <code class="directive"><a href="../mod/mod_userdir.html#userdir">UserDir</a></code> directive. Visitors
27     to a URL <code>http://example.com/~username/</code> will get content
28     out of the home directory of the user "<code>username</code>", out of
29     the subdirectory specified by the <code class="directive"><a href="../mod/mod_userdir.html#userdir">UserDir</a></code> directive.</p>
30
31 </div>
32 <div id="quickview"><ul id="toc"><li><img alt="" src="../images/down.gif" /> <a href="#related">Per-user web directories</a></li>
33 <li><img alt="" src="../images/down.gif" /> <a href="#userdir">Setting the file path with UserDir</a></li>
34 <li><img alt="" src="../images/down.gif" /> <a href="#enable">Restricting what users are permitted to use this 
35     feature</a></li>
36 <li><img alt="" src="../images/down.gif" /> <a href="#cgi">Enabling a cgi directory for each user</a></li>
37 <li><img alt="" src="../images/down.gif" /> <a href="#htaccess">Allowing users to alter configuration</a></li>
38 </ul><h3>See also</h3><ul class="seealso"><li><a href="../urlmapping.html">Mapping URLs to the Filesystem</a></li></ul></div>
39 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
40 <div class="section">
41 <h2><a name="related" id="related">Per-user web directories</a></h2>
42     
43     <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>
44     </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
45 <div class="section">
46 <h2><a name="userdir" id="userdir">Setting the file path with UserDir</a></h2>
47     
48
49     <p>The <code class="directive"><a href="../mod/mod_userdir.html#userdir">UserDir</a></code>
50     directive specifies a directory out of which per-user
51     content is loaded. This directive may take several different forms.</p>
52
53     <p>If a path is given which does not start with a leading slash, it is
54     assumed to be a directory path relative to the home directory of the
55     specified user. Given this configuration:</p>
56
57     <div class="example"><p><code>
58       UserDir public_html
59     </code></p></div>
60
61     <p>the URL <code>http://example.com/~rbowen/file.html</code> will be
62     translated to the file path
63     <code>/home/rbowen/public_html/file.html</code></p>
64
65     <p>If a path is given starting with a slash, a directory path will be
66     constructed using that path, plus the username specified. Given this
67     configuration:</p>
68
69     <div class="example"><p><code>
70       UserDir /var/html
71     </code></p></div>
72
73     <p>the URL <code>http://example.com/~rbowen/file.html</code> will be
74     translated to the file path <code>/var/html/rbowen/file.html</code></p>
75
76     <p>If a path is provided which contains an asterisk (*), a path is used
77     in which the asterisk is replaced with the username. Given this
78     configuration:</p>
79
80     <div class="example"><p><code>
81       UserDir /var/www/*/docs
82     </code></p></div>
83
84     <p>the URL <code>http://example.com/~rbowen/file.html</code> will be
85     translated to the file path
86     <code>/var/www/rbowen/docs/file.html</code></p>
87
88   </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
89 <div class="section">
90 <h2><a name="enable" id="enable">Restricting what users are permitted to use this 
91     feature</a></h2>
92     
93
94     <p>Using the syntax shown in the UserDir documentation, you can restrict
95     what users are permitted to use this functionality:</p>
96
97     <div class="example"><p><code>
98       UserDir enabled<br />
99       UserDir disabled root jro fish
100     </code></p></div>
101
102     <p>The configuration above will enable the feature for all users
103     except for those listed in the <code>disabled</code> statement.
104     You can, likewise, disable the feature for all but a few users by
105     using a configuration like the following:</p>
106
107     <div class="example"><p><code>
108       UserDir disabled<br />
109       UserDir enabled rbowen krietz
110     </code></p></div>
111
112     <p>See <code class="directive"><a href="../mod/mod_userdir.html#userdir">UserDir</a></code>
113     documentation for additional examples.</p>
114
115   </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
116 <div class="section">
117 <h2><a name="cgi" id="cgi">Enabling a cgi directory for each user</a></h2>
118   
119
120    <p>In order to give each user their own cgi-bin directory, you can use
121     a <code class="directive"><a href="../mod/core.html#directory">&lt;Directory&gt;</a></code>
122     directive to make a particular subdirectory of a user's home directory
123     cgi-enabled.</p>
124
125     <div class="example"><p><code>
126       &lt;Directory /home/*/public_html/cgi-bin/&gt;<br />
127        Options ExecCGI<br />
128        SetHandler cgi-script<br />
129        &lt;/Directory&gt;
130     </code></p></div>
131
132     <p>Then, presuming that <code>UserDir</code> is set to
133     <code>public_html</code>, a cgi program <code>example.cgi</code>
134     could be loaded from that directory as:</p>
135
136     <div class="example"><p><code>
137     http://example.com/~rbowen/cgi-bin/example.cgi
138     </code></p></div>
139
140     </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
141 <div class="section">
142 <h2><a name="htaccess" id="htaccess">Allowing users to alter configuration</a></h2>
143     
144
145     <p>If you want to allows users to modify the server configuration in
146     their web space, they will need to use <code>.htaccess</code> files to
147     make these changed. Ensure that you have set <code class="directive"><a href="../mod/core.html#allowoverride">AllowOverride</a></code> to a
148     value sufficient for the directives that you want to permit the users
149     to modify. See the <a href="htaccess.html">.htaccess tutorial</a> for
150     additional details on how this works.</p>
151
152   </div></div>
153 <div class="bottomlang">
154 <p><span>Available Languages: </span><a href="../en/howto/public_html.html" title="English">&nbsp;en&nbsp;</a> |
155 <a href="../ja/howto/public_html.html" hreflang="ja" rel="alternate" title="Japanese">&nbsp;ja&nbsp;</a></p>
156 </div><div id="footer">
157 <p class="apache">Copyright 1999-2004 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>
158 <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>
159 </body></html>