From e6a32ed7ff80ba984b50bac3f21e50007c1b45f7 Mon Sep 17 00:00:00 2001
From: Rich Bowen
Date: Thu, 12 Feb 2004 19:14:18 +0000
Subject: [PATCH] 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
---
docs/manual/howto/public_html.html.en | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
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.
- <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
+
+