blob: aff754df5d6f7c267aa95840a586f10efa6b354d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
*********************************************************************
* Please Read *
*********************************************************************
DATABASE SETUP:
If you have selected PostgreSQL or MySQL databases, you will need to
read the documentation on how to edit the config file, as well as how
to initialize the database. IF YOU SELECTED SQLITE, THIS CAN BE DONE
AUTOMATICALLY BY THIS PORT.
DOCUMENTATION URL:
http://flux.org.uk/projects/rackmonkey/doc/1.2.5/install
WEBSERVER SETUP:
If using the Apache web server, simply add the following
to the appropriate place in your config files:
Alias /rackmonkey %%WWWDIR%%
<Location /rackmonkey>
Order allow,deny
Allow from all
Options ExecCGI FollowSymLinks Includes
AddHandler cgi-script .pl
AddType text/html .shtml
AddHandler server-parsed .shtml
DirectoryIndex rackmonkey.pl index.shtml index.html
SetEnv RACKMONKEY_CONF %%WWWDIR%%/rackmonkey.conf
</Location>
|