diff options
author | ivan <ivan> | 2005-03-09 08:18:57 +0000 |
---|---|---|
committer | ivan <ivan> | 2005-03-09 08:18:57 +0000 |
commit | 24cf1de1156932c50a8d0d7bcab5f1fd163a35c0 (patch) | |
tree | 9359bb4d2d285515f137a893b323d911eb3aea88 /httemplate/docs/install.html | |
parent | a18e0aadb62be9f96c0aa42b3a6464dc933477dc (diff) |
preliminary RT docs
Diffstat (limited to 'httemplate/docs/install.html')
-rw-r--r-- | httemplate/docs/install.html | 31 |
1 files changed, 17 insertions, 14 deletions
diff --git a/httemplate/docs/install.html b/httemplate/docs/install.html index 4a89ab3ba..b7802b90f 100644 --- a/httemplate/docs/install.html +++ b/httemplate/docs/install.html @@ -119,46 +119,49 @@ $ su </ul> <table> <tr> - <th>Apache::ASP</th><th>Mason</th> + <th>Mason (recommended)</th><th>Apache::ASP (deprecated)</th> </tr> <tr> + <td valign="top"><ul> <li>Configure Apache: <font size="-1"><pre> -PerlModule Apache::ASP -# your freeside document root +PerlModule HTML::Mason +# your freeside docuemnt root <Directory /var/www/freeside> <Files ~ (\.cgi|\.html)> AddHandler perl-script .cgi .html -PerlHandler Apache::ASP +PerlHandler HTML::Mason </Files> <Perl> -$MLDBM::RemoveTaint = 1; +require "/usr/local/etc/freeside/handler.pl"; </Perl> -PerlSetVar Global /usr/local/etc/freeside/asp-global/ -PerlSetVar Debug 2 -PerlSetVar RequestBinaryRead Off -# your freeside document root -PerlSetVar IncludesDir /var/www/freeside </Directory> </pre></font> </ul></td> + <td valign="top"><ul> <li>Configure Apache: <font size="-1"><pre> -PerlModule HTML::Mason -# your freeside docuemnt root +PerlModule Apache::ASP +# your freeside document root <Directory /var/www/freeside> <Files ~ (\.cgi|\.html)> AddHandler perl-script .cgi .html -PerlHandler HTML::Mason +PerlHandler Apache::ASP </Files> <Perl> -require "/usr/local/etc/freeside/handler.pl"; +$MLDBM::RemoveTaint = 1; </Perl> +PerlSetVar Global /usr/local/etc/freeside/asp-global/ +PerlSetVar Debug 2 +PerlSetVar RequestBinaryRead Off +# your freeside document root +PerlSetVar IncludesDir /var/www/freeside </Directory> </pre></font> </ul></td> + </tr> </table> <ul> |