2014-11-14 18:50:01
来 源
itjs.cn
Nginx
本文介绍配置nginx使期支持PHP,希望对于初学Nginx服务器相关的朋友有帮助,更多Nginx安装、配置、报错处理等资源请本站内搜索。。
安装Nginxphp在这里就不多说了,毕竟网上教程已经很全面了。无论是rpm、apt-get还是下载源码安装只要按照步骤走就可以了,(PHP我是使用dpkg –P php5-cgi然后再apt-get install php5-cgi进行安装的,平台是Ubuntu)这里要说一下的是php支持模式,这部分为转帖

1)目前各种服务器HTTPServerPHP的支持一共有三种:

a.通过HTTPServer内置的模块来实现,

例如Apache的mod_php5,类似的Apache内置的mod_perl可以对perl支持;

b.通过CGI来实现,这个就好比之前perl的CGI,该种方式的缺点是性能差,因为每次服务器遇到这些脚本都需要重新启动脚本解析器来执行脚本然后将结果返回给服务器;另一方面就是不太安全;该方面几乎很少使用了。

c.最新出现一种叫做FastCGI。所谓FastCGI就是对CGI的改进。它一般采用C/S结构,一般脚本处理器会启动一个或者多个daemon进程,每次HTTPServer遇到脚本的时候,直接交付给FastCGI的进程来执行,然后将得到的结果(通常为html)返回给浏览器。

>该种方法的问题存在一个小问题是当遇到大流量的频繁请求的话,脚本处理器的daemon进程可能会超负荷从而变得很慢,甚至发生内存泄漏;

>但是比较起Apache的内置模块的方式的优点是由于Server和脚本解析器完全分开各负其责,因此服务器不再臃肿,可以专心地进行静态文件响应或者将动态脚本解析器的结果返回给用户客户端。所以比较起Apache的内置模块方式,有时候性能要提高很多。有人测试可能会达到 Apache+mod_php的5~10倍。

2)使用FastCGI方式现在常见的有两种stackligthttpd+spawn-fcgi;另外一种是nginx+PHP-FPM(也可以用spawn-fcgi)

a.如上面所说该两种结构都采用FastCGI对PHP支持,因此HTTPServer完全解放出来,可以更好地进行响应和并发处理。因此lighttpd和nginx都有small, but powerful和efficient的美誉。

b. 该两者还可以分出一个好坏来,spawn-fcgi由于是lighttpd的一部分,因此安装了lighttpd一般就会使用spawn-fcgi对 php支持,但是目前有用户说ligttpd的spwan-fcgi在高并发访问的时候,会出现上面说的内存泄漏甚至自动重启fastcgi。即:PHP 脚本处理器当机,这个时候如果用户访问的话,可能就会出现白页(即PHP不能被解析或者出错)。

另一个:首先nginx不像lighttpd本身含带了fastcgi(spawn-fcgi),因此它完全是轻量级的,必须借助第三方的FastCGI 处理器才可以对PHP进行解析,因此其实这样看来nginx是非常灵活的,它可以和任何第三方提供解析的处理器实现连接从而实现对PHP的解析(在 nginx.conf中很容易设置)。

nginx可以使用spwan-fcgi(需要一同安装lighttpd,但是需要为nginx避开端口,一些较早的blog有这方面安装的教程),但是由于spawn-fcgi具有上面所述的用户逐渐发现的缺陷,现在慢慢减少使用nginx+spawn-fcgi组合了。

c. 由于spawn-fcgi的缺陷,现在出现了新的第三方(目前还是,听说正在努力不久将来加入到PHP core中)的PHP的FastCGI处理器,叫做PHP-FPM(具体可以google)。它和spawn-fcgi比较起来有如下优点:

由于它是作为PHP的patch补丁来开发的,安装的时候需要和php源码一起编译,也就是说编译到php core中了,因此在性能方面要优秀一些;

同时它在处理高并发方面也优于spawn-fcgi,至少不会自动重启fastcgi处理器。具体采用的算法和设计可以google了解。

因此,如上所说由于nginx的轻量和灵活性,因此目前性能优越,越来越多人逐渐使用这个组合:nginx+PHP/PHP-FPM

3)因此总结: 

目前在HTTPServer这块基本可以看到有三种stack比较流行:

>Apache+mod_php5

>lighttp+spawn-fcgi

>nginx+PHP-FPM

好了,以上为转帖部分,下面回归正题,这里主要介绍lighttp+spawn-fcgi来控制php。而php-fpm的安装主要是在配置php时加上参数--enable-fpm就ok了,当然是用源码包也可以,但我没有安装成功~Nginx、PHP及Lighttpd的安装这里就不多说了,下面还是说一下设置Nginx可以解析PHP的问题。这个问题困扰了我N天之久,通过坚持不懈的实验及搜索,总结如下:

Nginx目录结构如下:

/usr/local/nginx/conf 配置目录

/usr/local/nginx/html 默认的网站根目录

/usr/local/nginx/logs 日志和pid文件目录

/usr/local/nginx/sbin 执行文件目录

/etc/nginx也有配置文件,但是基本不用修改,我开始查网上去修改那些文件后测试一点用也没有。。

在介绍nginx配置文件之前还要注意安装好PHP后修改一些文件:

/usr/local/nginx/conf #vi fastcgi_params

#fastcgi_params

fastcgi_paramQUERY_STRING$query_string;

fastcgi_paramREQUEST_METHOD$request_method;

fastcgi_paramCONTENT_TYPE$content_type;

fastcgi_paramCONTENT_LENGTH$content_length;

fastcgi_paramSCRIPT_FILENAME$document_root$fastcgi_script_name;

fastcgi_paramSCRIPT_NAME$fastcgi_script_name;

fastcgi_paramSCRIPT_NAME$fastcgi_script_name;

fastcgi_paramREQUEST_URI$request_uri;

fastcgi_paramDOCUMENT_URI$document_uri;

fastcgi_paramDOCUMENT_ROOT$document_root;

fastcgi_paramSERVER_PROTOCOL$server_protocol;

fastcgi_paramGATEWAY_INTERFACECGI/1.1;

fastcgi_paramSERVER_SOFTWAREnginx/$nginx_version;

fastcgi_paramREMOTE_ADDR$remote_addr;

fastcgi_paramREMOTE_PORT$remote_port;

fastcgi_paramSERVER_ADDR$server_addr;

fastcgi_paramSERVER_PORT$server_port;

fastcgi_paramSERVER_NAME$server_name;

# PHP only, required if PHP was built with --enable-force-cgi-redirect

fastcgi_paramREDIRECT_STATUS200;

还需要在PHP-CGI的配置文件(Ubuntu 上此配置文件位于/etc/php5/cgi/php.ini)中,打开cgi.fix_pathinfo选项:

设置 cgi.fix_pathinfo=1; 这样php-cgi方能正常使用SCRIPT_FILENAME这个变量。

接下来看nginx的配置,使PHP利用FastCGI进程执行

主要就是修改/usr/local/nginx/conf/nginx.conf,下面预设就有一个nginx.conf.default,将它cp为nginx.conf之后修改里面的配置,下面是个实例:

#usernobody;

worker_processes8;

error_loglogs/error.log;

pidlogs/nginx.pid;

events {

worker_connections1024;

}

http {

includemime.types;

default_typeapplication/octet-stream;

log_formatmain'$remote_addr - $remote_user [$time_local] "$request" '

'$status $request_time $body_bytes_sent "$http_referer" '

'"$http_user_agent" "$http_x_forwarded_for" "$upstream_addr"';

sendfileon;

keepalive_timeout65;

gzipon;

server {#这是重点,开始配置虚拟主机

listen8080;#我使用http://localhost:8080

server_name localhost;

location / {

root/var/www/php/website; #实际页面文件所在目录,如.php .html等

indexindex.php;#/var/www/php/website下的实际文件名,可以输入支持的多种格式以空格分开,如果存在多个看前后顺序显示

}

error_page404/404.html;

error_page500 502 503 504/50x.html;

location = /50x.html {

roothtml;

}

location ~ .php$ {#这是关键,配置解析php

fastcgi_pass127.0.0.1:9000;#下面要开这个端口

fastcgi_indexindex.php;

fastcgi_paramSCRIPT_FILENAME/scripts$fastcgi_script_name;

includefastcgi_params;

}

location ~ /.ht {

denyall;

}

}

include /usr/local/nginx/sites-enabled/*;

#这里是页面文件的配置目录,上面配了就可以不设这个

}

这里要指出的是上面的配置文档虽然可运行nginx对PHP支持但还是会出现问题,主要是配置在这个档案里的第一个location/ {可拿掉,而且最后一行的include既然上面配置虚拟主机了这行就可拿掉,如果未配置虚拟主机可include一个有配置文件的目录。(看下面示例)

修改后的nginx.conf:

#usernobody;

worker_processes8;

error_loglogs/error.log;

#error_loglogs/error.lognotice;

#error_loglogs/error.loginfo;

pidlogs/nginx.pid;

events {

worker_connections1024;

}

http {

includemime.types;

default_typeapplication/octet-stream;

log_formatmain'$remote_addr - $remote_user [$time_local] "$request" '

'$status $request_time $body_bytes_sent "$http_referer" '

'"$http_user_agent" "$http_x_forwarded_for" "$upstream_addr"';

sendfileon;

keepalive_timeout65;

gzipon;

server {

listen8080;

server_name localhost;

root/var/www/php/website;

indexindex.php index.html;

error_page404/404.html;

error_page500 502 503 504/50x.html;

location ~ .*.(php|php5)?$ {

fastcgi_pass127.0.0.1:9000;

fastcgi_indexindex.php;

fastcgi_paramSCRIPT_FILENAME/scripts$fastcgi_script_name;

includefastcgi_params;

}

}

}

相比之前的少了一个location和include,这里完全使用nginx.conf这个配置文件,而不会将配置文件指向其他目录。而下面这个配置:

#usernobody;

worker_processes8;

error_loglogs/error.log;

#error_loglogs/error.lognotice;

#error_loglogs/error.loginfo;

pidlogs/nginx.pid;

events {

worker_connections1024;

}

http {

includemime.types;

default_typeapplication/octet-stream;

log_formatmain'$remote_addr - $remote_user [$time_local] "$request" '

'$status $request_time $body_bytes_sent "$http_referer" '

'"$http_user_agent" "$http_x_forwarded_for" "$upstream_addr"';

sendfileon;

keepalive_timeout65;

gzipon;

#server {

#listen8080;

#server_name localhost;

#root/var/www/php/website;

#indexindex.php index.html;

#error_page404/404.html;

#error_page500 502 503 504/50x.html;

#location ~ .*.(php|php5)?$ {

#fastcgi_pass127.0.0.1:9000;

#fastcgi_indexindex.php;

#fastcgi_paramSCRIPT_FILENAME/scripts$fastcgi_script_name;

#includefastcgi_params;

#}

#}

include /usr/local/nginx/sites-enabled/*;

}

相比之下这个配置就是完全指向/usr/local/nginx/sites-enabled/*下面的配置文件,如index.php对应sites-enabled下的文件内容为:

server {

listen 8080;

server_name *.xxx.com;

access_log /var/log/nginx/php_xxx.access.log;

location / {

root /var/www/php/website;

index index.php index.html index.htm;

error_page500 502 503 504/50x.html;

location = /50x.html {

roothtml;

}

if (-f $request_filename/index.html)

{

rewrite (.*) $1/index.html break;

}

if (-f $request_filename/index.htm)

{

rewrite (.*) $1/index.htm break;

}

if (-f $request_filename/index.php)

{

rewrite (.*) $1/index.php break;

}

location ~ .php$ {

fastcgi_pass 127.0.0.1:9000;

fastcgi_index index.php;

fastcgi_param SCRIPT_FILENAME /var/www/php/website$fastcgi_script_name;

fastcgi_param SCRIPT_NAME /var/www/php/website$fastcgi_script_name;

include /usr/local/nginx/conf/fastcgi_params;

}

}

}

不难发现,其实这个目录下的文件是/usr/local/nginx/sites-available这个目录下文件的链接而已。

之后重新载入kill -HUP `cat /usr/local/nginx/logs/nginx.pid`或sudo /etc/init.d/nginx reload

随后sudo spawn-fcgi -a 127.0.0.1 -p 9000 -C 3 -u www-data -f php5-cgi启动PHP

将index.php放进/var/www/php/website/下,并包含”phpinfo();”的内容,现在再看http://localhost:8080便应该能看到php的调试信息了。

声明: 此文观点不代表本站立场;转载须要保留原文链接;版权疑问请联系我们。