Lines 18-23
Link Here
|
18 |
: ${spawn_fcgi_pidfile="/var/run/spawn-fcgi.pid"} |
18 |
: ${spawn_fcgi_pidfile="/var/run/spawn-fcgi.pid"} |
19 |
: ${spawn_fcgi_user="www"} |
19 |
: ${spawn_fcgi_user="www"} |
20 |
: ${spawn_fcgi_group="www"} |
20 |
: ${spawn_fcgi_group="www"} |
|
|
21 |
: ${spawn_fcgi_bindsock=""} |
21 |
: ${spawn_fcgi_bindaddr="127.0.0.1"} |
22 |
: ${spawn_fcgi_bindaddr="127.0.0.1"} |
22 |
: ${spawn_fcgi_bindport="9000"} |
23 |
: ${spawn_fcgi_bindport="9000"} |
23 |
: ${spawn_fcgi_children="5"} |
24 |
: ${spawn_fcgi_children="5"} |
Lines 27-33
Link Here
|
27 |
: ${spawn_fcgi_path_env="/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin"} |
28 |
: ${spawn_fcgi_path_env="/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin"} |
28 |
|
29 |
|
29 |
command="/usr/local/bin/spawn-fcgi" |
30 |
command="/usr/local/bin/spawn-fcgi" |
30 |
command_args="-u ${spawn_fcgi_user} -g ${spawn_fcgi_group} -a ${spawn_fcgi_bindaddr} -p ${spawn_fcgi_bindport} -P ${spawn_fcgi_pidfile} -- ${spawn_fcgi_app}" |
31 |
command_args="-u ${spawn_fcgi_user} -g ${spawn_fcgi_group} -a ${spawn_fcgi_bindaddr} -p ${spawn_fcgi_bindport} -s ${spawn_fcgi_bindsock} -P ${spawn_fcgi_pidfile} -- ${spawn_fcgi_app}" |
31 |
pidfile=${spawn_fcgi_pidfile} |
32 |
pidfile=${spawn_fcgi_pidfile} |
32 |
procname=${spawn_fcgi_app} |
33 |
procname=${spawn_fcgi_app} |
33 |
|
34 |
|