README (386B)
1 It can serve static files, has optional FastCGI and proxying support, 2 and a rich configuration syntax. 3 4 To have the gmid daemon start and stop with your host, add to 5 /etc/rc.d/rc.local: 6 7 if [ -x /etc/rc.d/rc.gmid ]; then 8 /etc/rc.d/rc.gmid start 9 fi 10 11 and to /etc/rc.d/rc.local_shutdown (creating it if needed): 12 13 if [ -x /etc/rc.d/rc.gmid ]; then 14 /etc/rc.d/rc.gmid stop 15 fi