summaryrefslogtreecommitdiff
path: root/docs/manual
diff options
context:
space:
mode:
authorRich Bowen <rbowen@apache.org>2004-02-12 19:14:18 +0000
committerRich Bowen <rbowen@apache.org>2004-02-12 19:14:18 +0000
commite6a32ed7ff80ba984b50bac3f21e50007c1b45f7 (patch)
treef6f2a89ce6be7ed29d712a2b47514e8a6e17b0ab /docs/manual
parent769e3d86d8fed6316f1dd12b8b8526b88cb703f0 (diff)
downloadhttpd-e6a32ed7ff80ba984b50bac3f21e50007c1b45f7.tar.gz
Building changes from XML. Correct path and more useful example.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@102638 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual')
-rw-r--r--docs/manual/howto/public_html.html.en10
1 files changed, 9 insertions, 1 deletions
diff --git a/docs/manual/howto/public_html.html.en b/docs/manual/howto/public_html.html.en
index 98f0e395e0..7a833a46fc 100644
--- a/docs/manual/howto/public_html.html.en
+++ b/docs/manual/howto/public_html.html.en
@@ -123,12 +123,20 @@
cgi-enabled.</p>
<div class="example"><p><code>
- &lt;Directory /home/*/cgi-bin/&gt;<br />
+ &lt;Directory /home/*/public_html/cgi-bin/&gt;<br />
Options ExecCGI<br />
SetHandler cgi-script<br />
&lt;/Directory&gt;
</code></p></div>
+ <p>Then, presuming that <code>UserDir</code> is set to
+ <code>public_html</code>, a cgi program <code>example.cgi</code>
+ could be loaded from that directory as:</p>
+
+ <div class="example"><p><code>
+ http://example.com/~rbowen/cgi-bin/example.cgi
+ </code></p></div>
+
</div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="section">
<h2><a name="htaccess" id="htaccess">Allowing users to alter configuration</a></h2>