X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Fdocs%2Finstall.html;h=9da2de37fc9402847d46dc2a5ca717f07ce7a3d3;hp=533decb7ba918d531fe646b25d0cb7cf3719ffac;hb=1cd72a6f1bd5ca39410f525779f5ca4ee9228a1c;hpb=344596452274c17c2c60bf2b002c9358cbd510a3 diff --git a/httemplate/docs/install.html b/httemplate/docs/install.html index 533decb7b..9da2de37f 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) @@ -129,30 +131,39 @@ 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:
     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>