Re: reload on fastcgi + lighttpd

2006-07-06 Thread Iain Duncan
> I finnally settled on lighttpd + django runfastcgi as my devel > environment. > It's just wonderful mainly becausse I run the httpd server as myself, > no need root permissions or anything and fastcgi is the only thing > I get from my ISP. > > But how can I force a server reload when I ch

Re: reload on fastcgi + lighttpd

2006-07-06 Thread strangy
I've made a shell script for this purpose : --- CODE --- #!/bin/sh PROJDIR="/home/ivica/devel/webapp/info" PIDFILE="$PROJDIR/run/info.pid" SOCKET="$PROJDIR/run/info.socket" PYTHON="/home/ivica/bin/python" LIGHTTPD="/home/ivica/lighttpd/sbin/lighttpd" LIGHTTPD_CONF="/home/ivica/etc/lighttpd.conf"

reload on fastcgi + lighttpd

2006-07-05 Thread imbunche
Hi all, I finnally settled on lighttpd + django runfastcgi as my devel environment. It's just wonderful mainly becausse I run the httpd server as myself, no need root permissions or anything and fastcgi is the only thing I get from my ISP. But how can I force a server reload when I change m