Skip to content

Instantly share code, notes, and snippets.

@yishenggudou
Created May 12, 2012 15:37
Show Gist options
  • Save yishenggudou/2667191 to your computer and use it in GitHub Desktop.
Save yishenggudou/2667191 to your computer and use it in GitHub Desktop.
php-fastcgi
#!/bin/bash
FASTCGI_USER=www-data #需要和nginx的一至 查看/etc/group /etc/passwd
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 #需要查看自己的php版本或许为php-cgi
/usr/bin/spawn-fcgi -s $SOCKET -P $PIDFILE -C $CHILDREN -u $FASTCGI_USER -g $FASTCGI_GROUP -f $PHP5