在Apache 2.2中,将指向物理 .php 文件的所有请求转发到PHP-FPM如下:
LoadModule fastcgi_module modules/mod_fastcgi.so
FastCGIExternalServer /usr/sbin/php-fpm -socket /usr/local/php/lib/php.sock -idle-timeout 900
AddHandler php-fastcgi .php
Action php-fastcgi /usr/sbin/php-fpm.fcgi
ScriptAlias /usr/sbin/php-fpm.fcgi /usr/sbin/php-fpm
但在Apache 2.4中有所不同,我正在关注Apache Wiki中的教程,但我不理解为所有虚拟主机启用 PHP,而不是每个虚拟主机。
我在 PHP 文档中搜索,没有提到在 Apache 2.4 上安装:
顺便提一下,感谢+蝶木子的解决方案是:
<IfModule mod_fastcgi.c>
DirectoryIndex index.php index.shtml index.cgi index.html index.htm
AddHandler php5-fcgi .php
Action php5-fcgi /php5-fcgi
Alias /php5-fcgi /usr/lib/cgi-bin/php5-fcgi
FastCgiExternalServer /usr/lib/cgi-bin/php5-fcgi -socket /var/lib/php/php.sock -idle-timeout 900 -pass-header Authorization
</IfModule>