Skip to content

Commit 53b30a9

Browse files
author
Jürgen Hermann
committed
Added samples for "external" CGI config
1 parent 0680b61 commit 53b30a9

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

INSTALL.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,4 +117,16 @@ Apache:
117117
4. Re-start your apache to re-load the config if necessary.
118118
5. Load up the page "/roundup/roundup.cgi/<instance name>/index" where
119119
instance name is the name you nominated in ROUNDUP_INSTANCE_HOMES.
120+
6. To use the CGI script unchanged, which allows much easier updates,
121+
add these directives to your "httpd.conf":
122+
SetEnv ROUNDUP_LOG "/var/log/roundup.log"
123+
SetEnv ROUNDUP_INSTANCE_HOMES "Default=/usr/local/share/roundup"
124+
SetEnv ROUNDUP_DEBUG "0"
125+
7. On Windows, write a batch file "roundup.bat" similar to the one below
126+
and place it into your cgi-bin directory:
127+
@echo off
128+
set ROUNDUP_LOG=c:\data\roundup\cgi.log
129+
set ROUNDUP_INSTANCE_HOMES=Default=c:\data\roundup;
130+
set ROUNDUP_DEBUG=0
131+
c:\Python21\python.exe c:\roundup\cgi-bin\roundup.cgi
120132

0 commit comments

Comments
 (0)