From: Rich Bowen Date: Thu, 12 Feb 2004 02:42:17 +0000 (+0000) Subject: This was wrong and misleading. Correct the file path, and give a more X-Git-Tag: pre_ajp_proxy~665 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=769e3d86d8fed6316f1dd12b8b8526b88cb703f0;p=apache This was wrong and misleading. Correct the file path, and give a more useful example. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@102634 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/howto/public_html.xml b/docs/manual/howto/public_html.xml index 81dde2202f..3dc1acb61a 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 + +