From: Matthijs Kooijman Date: Wed, 24 Nov 2010 08:08:10 +0000 (+0100) Subject: fastcgi: Enable Dorestad1493 booking system Django app. X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fservers%2Fdrsnuggles.git;a=commitdiff_plain;h=b28fa01f6f1291994be257546efa16465aed2d5c fastcgi: Enable Dorestad1493 booking system Django app. --- diff --git a/etc/init.d/fastcgi b/etc/init.d/fastcgi index 5b5a054..00f1a6e 100755 --- a/etc/init.d/fastcgi +++ b/etc/init.d/fastcgi @@ -28,7 +28,12 @@ SITES=[ ('stdout.nl', ['php']), ('ninniach.nl', ['php']), ('blues-brothers.eu', ['php']), - ('evolution-events.nl', ['php', ('wipi', 'applications/wipi/wipi.fcgi'), ('hunternet', 'applications/lexnet/manage.py runfcgi'), ('xerxes', 'applications/xerxes/manage.py runfcgi')]), + ('evolution-events.nl', ['php', + ('wipi', 'applications/wipi/wipi.fcgi'), + ('hunternet', 'applications/lexnet/manage.py runfcgi'), + ('xerxes', 'applications/xerxes/manage.py runfcgi'), + ('dorestad-bookings', 'applications/dorestad-bookings/manage.py.local runfcgi debug=true'), + ]), # ('stdio.flexvps.nl', ['php']), # ('foresightsecurity.nl', ['php']), ] @@ -41,7 +46,7 @@ APPLICATIONS={"php": "/usr/bin/php-cgi"} # Kill these procs before starting new ones. Only processes of these names that # are run by the sites in SITES are killed. This is a bit hackish, we should # really be using pidfiles... -KILL_PROCS=['php-cgi', 'manage.py', 'trac.fcgi', 'wipi.fcgi'] +KILL_PROCS=['php-cgi', 'manage.py', 'manage.py.local', 'trac.fcgi', 'wipi.fcgi'] ## ABSOLUTE path to the spawn-fcgi binary SPAWNFCGI="/usr/bin/spawn-fcgi"