/usr/share/doc/spawn-fcgi/run-generic is in spawn-fcgi 1.6.4-1+b1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | #!/bin/bash
# Use this as a run script with daemontools or runit
## ABSOLUTE path to the spawn-fcgi binary
SPAWNFCGI="/usr/bin/spawn-fcgi"
## ABSOLUTE path to the FastCGI application (php-cgi, dispatch.fcgi, ...)
FCGIPROGRAM="/usr/bin/php5-cgi"
## bind to unix socket
FCGISOCKET="/var/run/lighttpd/your-fcgi-app.sock"
# allowed environment variables separated by spaces
ALLOWED_ENV="PATH USER"
## if this script is run as root switch to the following user
USERID=xxx
SOCKUSERID=www-data
#CHROOT=/home/www/
#RAILS_ENV="production"
#export RAILS_ENV
################## no config below this line
exec 2>&1
if test x$PHP_FCGI_CHILDREN = x; then
PHP_FCGI_CHILDREN=4
fi
ALLOWED_ENV="$ALLOWED_ENV RAILS_ENV"
if test x$UID = x0; then
EX="$SPAWNFCGI -n -s $FCGISOCKET -u $USERID -U $SOCKUSERID -C $PHP_FCGI_CHILDREN -- $FCGIPROGRAM"
else
EX="$SPAWNFCGI -n -s $FCGISOCKET -C $PHP_FCGI_CHILDREN -- $FCGIPROGRAM"
fi
# copy the allowed environment variables
E=
for i in $ALLOWED_ENV; do
E="$E $i=${!i}"
done
# clean environment and set up a new one
exec env - $E $EX
|