X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Fdocs%2Finstall.html;h=df353eb9dff7f113f38cde4de273f40615e5a585;hp=3c48a746f2aaa523f9116773ea373e3d2ebb00ed;hb=2a7c870a444759b248b273483bf50a433ed8c490;hpb=c4d2226e0cc4bdd6d9f689b061b5f4f5b9609b0b diff --git a/httemplate/docs/install.html b/httemplate/docs/install.html index 3c48a746f..df353eb9d 100644 --- a/httemplate/docs/install.html +++ b/httemplate/docs/install.html @@ -3,21 +3,22 @@

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
    @@ -114,7 +115,10 @@ $ su
       
         
         
      -
    • (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>
       
      @@ -161,7 +175,7 @@ require "/usr/local/apache/conf/handler.pl";