Home > Backend Development > PHP Tutorial > nginx调整php-fpm

nginx调整php-fpm

WBOY
Release: 2016-06-13 11:03:47
Original
893 people have browsed it

nginx整合php-fpm

tar -zxvf php-5.4.9.tar.bz2cd php-5.4.9./configure --prefix=/usr/local/php --enable-fpmmake make installcp php.ini-production /usr/local/php/etc/php.inicp /usr/local/php/etc/php-fpm.conf.default  /usr/local/php/etc/php-fpm.conf#php.ini 配置时区vim /usr/local/php/etc/php.inidate.timezone=Asia/Shanghai#php-fpm.ini 配置目录,工作用户vim /usr/local/php/etc/php-fpm.iniaccess.log = /home/fansxnet/wwwroot/phpwww/logs/$pool.access.logslowlog = /home/fansxnet/wwwroot/phpwww/logs/$pool.log.slowuser = fansxnetgroup = fansxnet#/home/fansxnet/wwwroot/phpwww 目录文件夹列表htdocs  include  logs  templates#在htdocs目录中新建一个index.phpecho phpinfo()#nginx.conf的配置添加一个location ~ \.php$ {            root           /home/fansxnet/wwwroot/phpwww/htdocs;            fastcgi_pass   127.0.0.1:9000;            fastcgi_index  index.php;            fastcgi_param  PHP_VALUE 'include_path=/home/fansxnet/wwwroot/phpwww/include:/user/share/pear';            fastcgi_param  SCRIPT_FILENAME  /home/fansxnet/wwwroot/phpwww/htdocs$fastcgi_script_name;            include        fastcgi_params;}#启动nginx  php-fpm/usr/local/openresty/nginx/sbin/nginx/usr/local/php/sbin/php-fpm -c /usr/local/php/etc/php.ini#浏览 http://localhost/index.php#添加模块指定扩展模块目录vim /usr/local/php/etc/php.iniextensioin_dir = "/usr/lib64/php/modules"#curl modulecd php-5.4.9/ext/curlphpize./configure --with-php-config=/usr/local/php/bin/php-config --with-curl=/usr/binmake make installvim /usr/local/php/etc/php.iniextension=curl.so # 添加curl 
Copy after login
?

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template