From 022491d9d2723ca4d7d0718cdb1fd67e7652428e Mon Sep 17 00:00:00 2001 From: cvs2git Date: Wed, 7 Apr 2004 09:08:35 +0000 Subject: This commit was manufactured by cvs2svn to create tag 'NET_WHOIS_RAW_0_31'. --- httemplate/docs/install.html | 212 ------------------------------------------- 1 file changed, 212 deletions(-) delete mode 100644 httemplate/docs/install.html (limited to 'httemplate/docs/install.html') diff --git a/httemplate/docs/install.html b/httemplate/docs/install.html deleted file mode 100644 index 41aacc51b..000000000 --- a/httemplate/docs/install.html +++ /dev/null @@ -1,212 +0,0 @@ - - Installation - - -

Installation

-Note: Install Freeside on a firewalled, private server, not a public (web, RADIUS, etc.) server.

-Before installing, you need: - -Install the Freeside distribution: - - - - - - - - - -
Apache::ASPMason
    -
  • Run make aspdocs -
  • Copy aspdocs/ to your web server's document space: -
    -cp aspdocs /usr/local/apache/htdocs/freeside-asp
    -
    -
  • Create a Global directory, such as /usr/local/etc/freeside/asp-global/: -
    -mkdir /usr/local/etc/freeside/asp-global/
    -chown freeside /usr/local/etc/freeside/asp-global/
    -
    -
  • Copy htetc/global.asa to the Global directory: -
    -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|\.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 RequestBinaryRead Off
    -# your freeside document root
    -PerlSetVar IncludesDir /usr/local/apache/htdocs/freeside-asp
    -</Directory>
    -
    -
    -
  • Run make masondocs -
  • 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: -
    -PerlModule HTML::Mason
    -<Directory /usr/local/apache/htdocs/freeside-mason>
    -<Files ~ (\.cgi|.html)>
    -SetHandler perl-script
    -PerlHandler HTML::Mason
    -</Files>
    -<Perl>
    -require "/usr/local/etc/freeside/handler.pl";
    -</Perl>
    -</Directory>
    -
    -
- - -- cgit v1.2.1