Skip to content

Instantly share code, notes, and snippets.

@yishenggudou
Created May 12, 2012 15:37
Show Gist options
  • Save yishenggudou/2667190 to your computer and use it in GitHub Desktop.
Save yishenggudou/2667190 to your computer and use it in GitHub Desktop.
php-fastcgi
#!/bin/bash
FASTCGI_USER=www-data
FASTCGI_GROUP=www-data
SOCKET=/var/run/php-fastcgi/php-fastcgi.socket
PIDFILE=/var/run/php-fastcgi/php-fastcgi.pid
CHILDREN=6
PHP5=/usr/bin/php5-cgi
/usr/bin/spawn-fcgi -s $SOCKET -P $PIDFILE -C $CHILDREN -u $FASTCGI_USER -g $FASTCGI_GROUP -f $PHP5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment