X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Fdocs%2Finstall.html;h=d4507a2a5dae86dac886dd5b37a21678f2b4d898;hp=533decb7ba918d531fe646b25d0cb7cf3719ffac;hb=83ccbe7d9626cea57ad70a9c22d8fa4518e39919;hpb=344596452274c17c2c60bf2b002c9358cbd510a3 diff --git a/httemplate/docs/install.html b/httemplate/docs/install.html index 533decb7b..d4507a2a5 100644 --- a/httemplate/docs/install.html +++ b/httemplate/docs/install.html @@ -3,9 +3,10 @@

Installation

+Note: Install Freeside on a firewalled, private server, not a public (web, RADIUS, etc.) server.

Before installing, you need: -
  • Perl modules (CPAN will query, download and build perl modules automatically) +
  • Perl modules (CPAN will query, download and build perl modules automatically) @@ -126,33 +128,42 @@ 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)>
    -AddHandler perl-script .cgi
    +<Files ~ (\.cgi|\.html)>
    +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>