Ubuntu/Debian下简易Nginx+FastCGI+PHP配置_Linux_操作系统_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 操作系统 > Linux > Ubuntu/Debian下简易Nginx+FastCGI+PHP配置

Ubuntu/Debian下简易Nginx+FastCGI+PHP配置

 2010/11/2 16:29:01    程序员俱乐部  我要评论(0)
  • 摘要:由于目前Nginx还不支持直接运行PHP,但是Nginx支持FastCGI,可以用FastCGI模式运行PHP作为后端。Nginx不能像Lighttpd那样自动启动FastCGI,所以这里要借一下lighttpd的spawn-fcgi工具来启动PHP。安装PHP以下为引用的内容:sudoapt-getinstallphp5php5-cgi获得spawn-fcgi下载lighttpd,解压,以下为引用的内容:./configuremakesudocp./src/spawn
  • 标签:PHP配置

由于目前Nginx还不支持直接运行PHP,但是Nginx支持FastCGI,可以用FastCGI模式运行PHP作为后端。Nginx不能像Lighttpd那样自动启动FastCGI,所以这里要借一下lighttpd的spawn-fcgi工具来启动PHP。

安装PHP

以下为引用的内容:

sudo apt-get install php5 php5-cgi

获得spawn-fcgi

下载lighttpd,解压,

以下为引用的内容:

./configure
make
sudo cp ./src/spawn-fcgi /usr/local/sbin/

spawn-fcgi启动脚本

以下为引用的内容:

#!/bin/sh

# /etc/init.d/php-fastcgi: start php fastcgi

set -e
. /lib/lsb/init-functions

BINPATH=”/usr/bin/spawn-fcgi”

CGIPATH=”/usr/bin/php-cgi”
ADDR=”127.0.0.1″
PORT=”9000″
CHILDS=”2″
RUNUSER=”www-data”
RUNGROUP=”www-data”
PIDFILE=”/var/run/phpcgi.pid”

OPTS=”-f $CGIPATH -a $ADDR -p $PORT -C $CHILDS -P $PIDFILE -u $RUNUSER -g $RUNGROUP”

do_start() {
start-stop-daemon –start –quiet \
–pidfile $PIDFILE \
–exec $BINPATH — $OPTS || return 1
return 0
}

do_stop() {
start-stop-daemon –stop –quiet –oknodo \
–pidfile $PIDFILE || return 1
return 0
}

case “$1″ in
start)
log_begin_msg “Starting PHP FastCGI …”
do_start || log_end_msg 1
log_end_msg 0
;;
stop)
log_begin_msg “Stopping PHP FastCGI …”
do_stop || log_end_msg 1
log_end_msg 0
;;
reload|force-reload)
log_begin_msg “Reloading … Do nothing”
log_end_msg 0
;;
restart)
log_begin_msg “Restarting PHP FastCGI …”
do_stop
sleep 5
do_start || log_end_msg 1
log_end_msg 0
;;
*)
log_success_msg “Usage: /etc/init.d/php-fastcgi  {start|stop|reload|force-reload|restart}”
exit 1
esac

exit 0

脚本保存到 /etc/init.d/php-fastcgi,然后添加到启动项中:

update-rc.d php-fastcgi start 89 2 3 4 5 。 stop 19 0 1 6 。

nginx的设置

修改站点的设置,使php传到后端处理

以下为引用的内容:

location ~ \.php$
fastcgi_pass   127.0.0.1:9000;
fastcgi_index  index.php;
fastcgi_param  SCRIPT_FILENAME /path/to/your/site$fastcgi_script_name;
include        fastcgi_params;
}

  • 相关文章
发表评论
用户名: 匿名