diff options
Diffstat (limited to 'docs/manual/howto/public_html.html.en')
-rw-r--r-- | docs/manual/howto/public_html.html.en | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/docs/manual/howto/public_html.html.en b/docs/manual/howto/public_html.html.en index 3ca97fdd..0ca1067c 100644 --- a/docs/manual/howto/public_html.html.en +++ b/docs/manual/howto/public_html.html.en @@ -36,13 +36,13 @@ out of the home directory of the user "<code>username</code>", out of the subdirectory specified by the <code class="directive"><a href="../mod/mod_userdir.html#userdir">UserDir</a></code> directive.</p> <p>Note that, by default, access to these directories is <strong>not</strong> - enabled. You can enable access when using <code class="directive"><a href="../mod/mod_userdir.html#userdir">UserDir</a></code> by uncommenting the line</p> - <div class="example"><p><code> - #Include conf/extra/httpd-userdir.conf - </code></p></div> + enabled. You can enable access when using <code class="directive"><a href="../mod/mod_userdir.html#userdir">UserDir</a></code> by uncommenting the line:</p> + <pre class="prettyprint lang-config">#Include conf/extra/httpd-userdir.conf</pre> + <p>in the default config file <code>conf/httpd.conf</code>, and adapting the <code>httpd-userdir.conf</code> file as necessary, or by including the appropriate directives in a - <code>Directory</code> block within the main config file.</p> + <code class="directive"><a href="../mod/core.html#directory"><Directory></a></code> block + within the main config file.</p> </div> <div id="quickview"><ul id="toc"><li><img alt="" src="../images/down.gif" /> <a href="#related">Per-user web directories</a></li> <li><img alt="" src="../images/down.gif" /> <a href="#userdir">Setting the file path with UserDir</a></li> @@ -51,7 +51,7 @@ feature</a></li> <li><img alt="" src="../images/down.gif" /> <a href="#cgi">Enabling a cgi directory for each user</a></li> <li><img alt="" src="../images/down.gif" /> <a href="#htaccess">Allowing users to alter configuration</a></li> -</ul><h3>See also</h3><ul class="seealso"><li><a href="../urlmapping.html">Mapping URLs to the Filesystem</a></li></ul><ul class="seealso"><li><a href="#comments_section">Comments</a></li></ul></div> +</ul><h3>See also</h3><ul class="seealso"><li><a href="../urlmapping.html">Mapping URLs to the Filesystem</a></li><li><a href="#comments_section">Comments</a></li></ul></div> <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div> <div class="section"> <h2><a name="related" id="related">Per-user web directories</a></h2> @@ -139,8 +139,8 @@ You can, likewise, disable the feature for all but a few users by using a configuration like the following:</p> - <pre class="prettyprint lang-config"> UserDir disabled<br /> - UserDir enabled rbowen krietz</pre> + <pre class="prettyprint lang-config">UserDir disabled +UserDir enabled rbowen krietz</pre> <p>See <code class="directive"><a href="../mod/mod_userdir.html#userdir">UserDir</a></code> |