X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fdocs%2Finstall.html;h=df353eb9dff7f113f38cde4de273f40615e5a585;hb=7209026857ada1ec716c728ae966f0fc986b180e;hp=d229151769ebc577a6c36fa5ccf848973b6da8b4;hpb=2f1f5c47edd9df2af61d104b512b9a1be12c3ad1;p=freeside.git diff --git a/httemplate/docs/install.html b/httemplate/docs/install.html index d22915176..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: @@ -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
    @@ -127,36 +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>
     
      -
    • (use version 1.0x - Freeside is not yet compatible with version 1.1x)
    • Run make masondocs -
    • Copy masondocs/ to your web server's document space. -
    • Copy htetc/handler.pl to your web server's configuration directory. -
    • Edit handler.pl and set an appropriate data_dir, such as /usr/local/etc/freeside/mason-data -
    • Configure Apache to use the handler.pl file and to execute .cgi files using HTML::Mason. For example: +
    • Copy masondocs/ to your web server's document space. (For example: /usr/local/apache/htdocs/freeside-mason) +
    • Copy htetc/handler.pl to /usr/local/etc/freeside +
    • Edit handler.pl and: +
        +
      • set an appropriate comp_root, such as /usr/local/apache/htdocs/freeside-mason +
      • 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, 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)>
      -AddHandler perl-script .cgi
      +<Files ~ (\.cgi|\.html)>
      +AddHandler perl-script .cgi .html
       PerlHandler HTML::Mason
       </Files>
       <Perl>
      -require "/usr/local/apache/conf/handler.pl";
      +require "/usr/local/etc/freeside/handler.pl";
       </Perl>
       </Directory>
       
      @@ -164,7 +175,7 @@ require "/usr/local/apache/conf/handler.pl";