X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fdocs%2Finstall.html;h=df353eb9dff7f113f38cde4de273f40615e5a585;hb=7209026857ada1ec716c728ae966f0fc986b180e;hp=ed419a1ca31ba8cdbe2a4ee8e2e894b44955f82f;hpb=60527016538d1794227983d99ce3b77c8fcd7426;p=freeside.git diff --git a/httemplate/docs/install.html b/httemplate/docs/install.html index ed419a1ca..df353eb9d 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,38 +128,46 @@ 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>