> 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
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"
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