You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rb...@apache.org on 2004/02/12 03:42:17 UTC

cvs commit: httpd-2.0/docs/manual/howto public_html.xml

rbowen      2004/02/11 18:42:17

  Modified:    docs/manual/howto public_html.xml
  Log:
  This was wrong and misleading. Correct the file path, and give a more
  useful example.
  
  Revision  Changes    Path
  1.11      +9 -1      httpd-2.0/docs/manual/howto/public_html.xml
  
  Index: public_html.xml
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/docs/manual/howto/public_html.xml,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- public_html.xml	9 Feb 2004 20:22:51 -0000	1.10
  +++ public_html.xml	12 Feb 2004 02:42:17 -0000	1.11
  @@ -130,10 +130,18 @@
       cgi-enabled.</p>
   
       <example>
  -      &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;
  +    </example>
  +
  +    <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>
  +
  +    <example>
  +    http://example.com/~rbowen/cgi-bin/example.cgi
       </example>
   
       </section>