X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Fdocs%2Finstall.html;h=0217c9085553f88678f4883a8493c35cd11e405d;hp=d229151769ebc577a6c36fa5ccf848973b6da8b4;hb=72a65ceaa28155e8c1c3c1328dd76587b35e089a;hpb=2f1f5c47edd9df2af61d104b512b9a1be12c3ad1 diff --git a/httemplate/docs/install.html b/httemplate/docs/install.html index d22915176..0217c9085 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: @@ -71,17 +74,16 @@ Enter it again: Shall the new user be allowed to create databases? (y/n) y Shall the new user be allowed to create more new users? (y/n) n CREATE USER -
  • Edit the top-level Makefile:
  • Add the freeside database to your database engine: @@ -92,10 +94,9 @@ $ su
     $ su freeside
     $ createdb freeside
    -
  • Build and install the Perl modules:
     $ make perl-modules
    @@ -129,34 +130,41 @@ 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
     <Directory /usr/local/apache/htdocs/freeside-asp>
    -<Files ~ (\.cgi)>
    -AddHandler perl-script .cgi
    +<Files ~ (\.cgi|\.html)>
    +SetHandler perl-script
     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
     </Directory>