Created
April 30, 2013 10:30
-
-
Save udienz/5487891 to your computer and use it in GitHub Desktop.
php-fastcgi
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| ### BEGIN INIT INFO | |
| # Provides: php-fcgi | |
| # Required-Start: $nginx | |
| # Required-Stop: $nginx | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 | |
| # Short-Description: starts php over fcgi | |
| # Description: starts php over fcgi | |
| ### END INIT INFO | |
| (( EUID )) && echo .You need to have root priviliges.. && exit 1 | |
| BIND=/tmp/php5.socket | |
| USER=www-data | |
| PHP_FCGI_CHILDREN=15 | |
| PHP_FCGI_MAX_REQUESTS=1000 | |
| PHP_CGI=/usr/bin/php-cgi | |
| PHP_CGI_NAME=`basename $PHP_CGI` | |
| PHP_CGI_ARGS="- USER=$USER PATH=/usr/bin PHP_FCGI_CHILDREN=$PHP_FCGI_CHILDREN PHP_FCGI_MAX_REQUESTS=$PHP_FCGI_MAX_REQUESTS $PHP_CGI -b $BIND" | |
| RETVAL=0 | |
| start() { | |
| echo -n "Starting PHP FastCGI: " | |
| start-stop-daemon --quiet --start --background --chuid "$USER" --exec /usr/bin/env -- $PHP_CGI_ARGS | |
| RETVAL=$? | |
| echo "$PHP_CGI_NAME." | |
| } | |
| stop() { | |
| echo -n "Stopping PHP FastCGI: " | |
| killall -q -w -u $USER $PHP_CGI | |
| RETVAL=$? | |
| echo "$PHP_CGI_NAME." | |
| } | |
| case "$1" in | |
| start) | |
| start | |
| ;; | |
| stop) | |
| stop | |
| ;; | |
| restart) | |
| stop | |
| start | |
| ;; | |
| *) | |
| echo "Usage: php-fastcgi {start|stop|restart}" | |
| exit 1 | |
| ;; | |
| esac | |
| exit $RETVAL |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment