Code

Added samples for "external" CGI config
authorjhermann <jhermann@57a73879-2fb5-44c3-a270-3262357dd7e2>
Tue, 6 Nov 2001 22:22:20 +0000 (22:22 +0000)
committerjhermann <jhermann@57a73879-2fb5-44c3-a270-3262357dd7e2>
Tue, 6 Nov 2001 22:22:20 +0000 (22:22 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@370 57a73879-2fb5-44c3-a270-3262357dd7e2

INSTALL.txt

index eb460c07aefdb03208bb25ec0888af17d4cf0a8c..2b33445eaef01e2ad1116b5c7f91d1d299bd4111 100644 (file)
@@ -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/<instance name>/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