使用
PHP与Nginx的好方法是什么?根据我的发现,也许使用PHP-FPM可能是将PHP放在Nginx后面的好方法.
我们遇到的问题是我们所服务的基于Web的免费API会收到很多请求(每天大约500K),请求大多数都很短而且体积很小但是Apache消耗了大量内存.我想尝试Nginx,看它能否更好地处理它.
谢谢.
> Ubuntu Lucid 64位
> apt-get install Nginx
> apt-get update
> apt-get install PHP5-cli PHP5-common PHP5-suhosin
> apt-get install python-software-properties
> add-apt-repository ppa:brianmercer / PHP
> apt-get update&& apt-get install PHP5-fpm PHP5-cgi
> /etc/init.d/Nginx重启
> /etc/init.d/PHP5-fpm restart
原文链接:https://www.f2er.com/php/134085.html> apt-get install Nginx
> apt-get update
> apt-get install PHP5-cli PHP5-common PHP5-suhosin
> apt-get install python-software-properties
> add-apt-repository ppa:brianmercer / PHP
> apt-get update&& apt-get install PHP5-fpm PHP5-cgi
> /etc/init.d/Nginx重启
> /etc/init.d/PHP5-fpm restart
编辑(可能需要在您的网站配置中):
location ~ \.PHP${ fastcgi_read_timeout 60000; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.PHP; fastcgi_param SCRIPT_FILENAME /var/www/site$fastcgi_script_name; include fastcgi_params; } location ~ /\.ht { deny all; }