Created
December 13, 2010 12:26
-
-
Save 1999/738943 to your computer and use it in GitHub Desktop.
php-fpm
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
./configure \ | |
--prefix=/opt/php \ | |
--sysconfdir=/etc/opt/php \ | |
--enable-fpm \ | |
--disable-cgi \ | |
--with-config-file-path=/etc/opt/php \ | |
--with-config-file-scan-dir=/etc/opt/php/conf.d/ \ | |
--enable-zip \ | |
--with-gettext \ | |
--disable-ftp \ | |
--disable-ipv6 \ | |
--with-zlib \ | |
--enable-bcmath \ | |
--with-bz2 \ | |
--enable-calendar \ | |
--disable-ctype \ | |
--with-curl \ | |
--with-libxml-dir=/usr/local \ | |
--with-mcrypt=/usr/local \ | |
--enable-exif \ | |
--with-gd \ | |
--enable-gd-native-ttf \ | |
--with-jpeg-dir=/usr/local \ | |
--with-freetype-dir=/usr/local \ | |
--with-png-dir=/usr/local \ | |
--enable-gd-native-ttf \ | |
--enable-mbstring=all \ | |
--with-mysql=mysqlnd \ | |
--with-mysqli=mysqlnd \ | |
--disable-pdo \ | |
--enable-soap \ | |
--enable-sockets \ | |
--enable-inline-optimization \ | |
--enable-zend-multibyte \ | |
--without-pear | |
# libxml2-dev libbz2-dev libcurl4-dev libjpeg62-dev libpng3-dev libfreetype6-dev libmcrypt-dev | |
# pid кровь из носу раскомментить | |
############################################################################################################# | |
############################################################################################################# | |
#! /bin/sh | |
### BEGIN INIT INFO | |
# Provides: php-fpm | |
# Required-Start: $remote_fs $network | |
# Required-Stop: $remote_fs $network | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: starts php-fpm | |
# Description: starts the PHP FastCGI Process Manager daemon | |
### END INIT INFO | |
prefix=/opt/php-fpm | |
exec_prefix=${prefix} | |
php_fpm_BIN=${exec_prefix}/sbin/php-fpm | |
php_fpm_CONF=/etc/opt/php-fpm/php-fpm.conf | |
php_fpm_PID=${prefix}/var/run/php-fpm.pid | |
php_opts="--fpm-config $php_fpm_CONF" | |
wait_for_pid () { | |
try=0 | |
while test $try -lt 35 ; do | |
case "$1" in | |
'created') | |
if [ -f "$2" ] ; then | |
try='' | |
break | |
fi | |
;; | |
'removed') | |
if [ ! -f "$2" ] ; then | |
try='' | |
break | |
fi | |
;; | |
esac | |
echo -n . | |
try=`expr $try + 1` | |
sleep 1 | |
done | |
} | |
case "$1" in | |
start) | |
echo -n "Starting php-fpm " | |
$php_fpm_BIN $php_opts | |
if [ "$?" != 0 ] ; then | |
echo " failed" | |
exit 1 | |
fi | |
wait_for_pid created $php_fpm_PID | |
if [ -n "$try" ] ; then | |
echo " failed" | |
exit 1 | |
else | |
echo " done" | |
fi | |
;; | |
stop) | |
echo -n "Gracefully shutting down php-fpm " | |
if [ ! -r $php_fpm_PID ] ; then | |
echo "warning, no pid file found - php-fpm is not running ?" | |
exit 1 | |
fi | |
kill -QUIT `cat $php_fpm_PID` | |
wait_for_pid removed $php_fpm_PID | |
if [ -n "$try" ] ; then | |
echo " failed. Use force-exit" | |
exit 1 | |
else | |
echo " done" | |
fi | |
;; | |
force-quit) | |
echo -n "Terminating php-fpm " | |
if [ ! -r $php_fpm_PID ] ; then | |
echo "warning, no pid file found - php-fpm is not running ?" | |
exit 1 | |
fi | |
kill -TERM `cat $php_fpm_PID` | |
wait_for_pid removed $php_fpm_PID | |
if [ -n "$try" ] ; then | |
echo " failed" | |
exit 1 | |
else | |
echo " done" | |
fi | |
;; | |
restart) | |
$0 stop | |
$0 start | |
;; | |
reload) | |
echo -n "Reload service php-fpm " | |
if [ ! -r $php_fpm_PID ] ; then | |
echo "warning, no pid file found - php-fpm is not running ?" | |
exit 1 | |
fi | |
kill -USR2 `cat $php_fpm_PID` | |
echo " done" | |
;; | |
*) | |
echo "Usage: $0 {start|stop|force-quit|restart|reload}" | |
exit 1 | |
;; | |
esac | |
############################################################################################################# | |
############################################################################################################# | |
allow_call_time_pass_reference off | |
display_errors off | |
expose_php off | |
magic_quotes_gpc !!! | |
memory_limit 1024M | |
post_max_size 16M | |
sendmail_path /usr/sbin/sendmail -t -i | |
memcache |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment