Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 34118 invoked from network); 12 Feb 2004 19:14:20 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 12 Feb 2004 19:14:20 -0000 Received: (qmail 73254 invoked by uid 500); 12 Feb 2004 19:14:11 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 73136 invoked by uid 500); 12 Feb 2004 19:14:10 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 73114 invoked by uid 500); 12 Feb 2004 19:14:10 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Received: (qmail 73111 invoked from network); 12 Feb 2004 19:14:10 -0000 Received: from unknown (HELO minotaur.apache.org) (209.237.227.194) by daedalus.apache.org with SMTP; 12 Feb 2004 19:14:10 -0000 Received: (qmail 34108 invoked by uid 1174); 12 Feb 2004 19:14:18 -0000 Date: 12 Feb 2004 19:14:18 -0000 Message-ID: <20040212191418.34107.qmail@minotaur.apache.org> From: rbowen@apache.org To: httpd-2.0-cvs@apache.org Subject: cvs commit: httpd-2.0/docs/manual/howto public_html.html.en X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N rbowen 2004/02/12 11:14:18 Modified: docs/manual/howto public_html.html.en Log: Building changes from XML. Correct path and more useful example. Revision Changes Path 1.17 +9 -1 httpd-2.0/docs/manual/howto/public_html.html.en Index: public_html.html.en =================================================================== RCS file: /home/cvs/httpd-2.0/docs/manual/howto/public_html.html.en,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- public_html.html.en 29 Nov 2003 20:03:15 -0000 1.16 +++ public_html.html.en 12 Feb 2004 19:14:18 -0000 1.17 @@ -123,10 +123,18 @@ 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

top