From: jhermann Date: Tue, 6 Nov 2001 22:22:20 +0000 (+0000) Subject: Added samples for "external" CGI config X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=9c1a73385a854536ccd75ad2be84ad31c9f6da19;p=roundup.git Added samples for "external" CGI config git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@370 57a73879-2fb5-44c3-a270-3262357dd7e2 --- diff --git a/INSTALL.txt b/INSTALL.txt index eb460c0..2b33445 100644 --- a/INSTALL.txt +++ b/INSTALL.txt @@ -117,4 +117,16 @@ Apache: 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