From: Rich Bowen
Date: Thu, 12 Feb 2004 02:47:36 +0000 (+0000)
Subject: Was wrong and misleading. Correct directory path, and give a slightly
X-Git-Tag: 2.0.49~110
X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8cde19d762c53f437f79900891bd535324483b91;p=thirdparty%2Fapache%2Fhttpd.git
Was wrong and misleading. Correct directory path, and give a slightly
more useful example.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/APACHE_2_0_BRANCH@102635 13f79535-47bb-0310-9956-ffa450edef68
---
diff --git a/docs/manual/howto/public_html.xml b/docs/manual/howto/public_html.xml
index d96fddcd642..468e083b8e7 100644
--- a/docs/manual/howto/public_html.xml
+++ b/docs/manual/howto/public_html.xml
@@ -130,12 +130,20 @@
cgi-enabled.
- <Directory /home/*/cgi-bin/>
+ <Directory /home/*/public_html/cgi-bin/>
Options ExecCGI
SetHandler cgi-script
</Directory>
+ Then, presuming that UserDir
is set to
+ public_html
, a cgi program example.cgi
+ could be loaded from that directory as:
+
+
+ http://example.com/~rbowen/cgi-bin/example.cgi
+
+