# HG changeset patch # User Jürgen Hermann # Date 1005085340 0 # Node ID 3903aaaef4e1be336c70fb0dca47a3120c068f2c # Parent 3cc910586bde939e40a11fc1ed40ab3da03d4b94 Added samples for "external" CGI config diff -r 3cc910586bde -r 3903aaaef4e1 INSTALL.txt --- a/INSTALL.txt Tue Nov 06 22:10:11 2001 +0000 +++ b/INSTALL.txt Tue Nov 06 22:22:20 2001 +0000 @@ -117,4 +117,16 @@ 4. Re-start your apache to re-load the config if necessary. 5. Load up the page "/roundup/roundup.cgi//index" where instance name is the name you nominated in ROUNDUP_INSTANCE_HOMES. + 6. To use the CGI script unchanged, which allows much easier updates, + add these directives to your "httpd.conf": + SetEnv ROUNDUP_LOG "/var/log/roundup.log" + SetEnv ROUNDUP_INSTANCE_HOMES "Default=/usr/local/share/roundup" + SetEnv ROUNDUP_DEBUG "0" + 7. On Windows, write a batch file "roundup.bat" similar to the one below + and place it into your cgi-bin directory: + @echo off + set ROUNDUP_LOG=c:\data\roundup\cgi.log + set ROUNDUP_INSTANCE_HOMES=Default=c:\data\roundup; + set ROUNDUP_DEBUG=0 + c:\Python21\python.exe c:\roundup\cgi-bin\roundup.cgi