X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fdocs%2Finstall.html;h=d4507a2a5dae86dac886dd5b37a21678f2b4d898;hb=157e8bdba110b7aac022bd2c2f7b377d3c5b2f85;hp=1355a113c88ae316e9151526319f4737ca63bb9c;hpb=23e2dbc925c01f035984b3a7f3dccfa5ff7c4ccf;p=freeside.git diff --git a/httemplate/docs/install.html b/httemplate/docs/install.html index 1355a113c..d4507a2a5 100644 --- a/httemplate/docs/install.html +++ b/httemplate/docs/install.html @@ -6,7 +6,7 @@ Note: Install Freeside on a firewalled, private server, not a public (web, RADIUS, etc.) server.

Before installing, you need: @@ -127,19 +128,23 @@ chown freeside /usr/local/etc/freeside/asp-global/
 cp htetc/global.asa /usr/local/etc/freeside/asp-global/global.asa
 
-
  • Configure Apache for the Global directory and to execute .cgi files using Apache::ASP. For example: +
  • Configure Apache for the Global directory and to execute .cgi files using Apache::ASP. For example, add something like the following to your Apache httpd.conf file, adjusting for your actual paths:
     PerlModule Apache::ASP
    +# your freeside document root
     <Directory /usr/local/apache/htdocs/freeside-asp>
     <Files ~ (\.cgi|\.html)>
    -SetHandler perl-script
    +AddHandler perl-script .cgi .html
     PerlHandler Apache::ASP
     </Files>
     <Perl>
     $MLDBM::RemoveTaint = 1;
     </Perl>
     PerlSetVar Global /usr/local/etc/freeside/asp-global/
    -PerlSetVar Debug 2
    +PerlSetVar Debug 2
    +PerlSetVar RequestBinaryRead Off
    +# your freeside document root
    +PerlSetVar IncludesDir /usr/local/apache/htdocs/freeside-asp
     </Directory>
     
    @@ -153,12 +158,12 @@ PerlSetVar Debug 2
  • set an appropriate data_dir, such as /usr/local/etc/freeside/masondata -
  • Configure Apache to use the handler.pl file and to execute .cgi files using HTML::Mason. For example: +
  • Configure Apache to use the handler.pl file and to execute .cgi files using HTML::Mason. For example, add something like the following to your Apache httpd.conf file, adjusting for your actual paths:
     PerlModule HTML::Mason
     <Directory /usr/local/apache/htdocs/freeside-mason>
    -<Files ~ (\.cgi|.html)>
    -SetHandler perl-script
    +<Files ~ (\.cgi|\.html)>
    +AddHandler perl-script .cgi .html
     PerlHandler HTML::Mason
     </Files>
     <Perl>
    @@ -170,7 +175,7 @@ require "/usr/local/etc/freeside/handler.pl";