我有两个网站,它们在 Ubuntu 12.04 上从 apache 2.2 vhosts 和 PHP-FPM 5.4 运行。到目前为止,我一直在使用服务器范围的(库存)mod_fastcgi 配置,但现在我想将其拆分为两个 FPM 池,以便我可以为每个池使用不同的 PHP 设置(例如,一个是开发网站,因此启用了错误显示)。
我根据文档设置了两个具有不同名称和套接字位置的 FPM 池,禁用了全局 fastcgi 配置,将其复制到我的 vhost 中并将其更改为指向每个 vhost 的不同池,如下所示:
<IfModule mod_fastcgi.c>
<FilesMatch \.php$>
SetHandler php-script
</FilesMatch>
Action php-script /php5.fcgi virtual
Alias /php5.fcgi /var/fastcgi/php5.fcgi
FastCGIExternalServer /var/fastcgi/php5.fcgi -socket /var/run/php5-fpm-www.sock
<Directory "/var/fastcgi">
Order allow,deny
<Files "php5.fcgi">
Order deny,allow
Deny from all
Allow from env=REDIRECT_STATUS
</Files>
</Directory>
</IfModule>
实际上有 4 个 vhost,因为每个主机名都有常规和 SSL 风格,并且每对指向一个 FPM 池。
我遇到的问题是 apache 抛出一个错误:
FastCgiExternalServer: redefinition of previously defined class "/var/fastcgi/php5.fcgi"
应该如何做呢?
答案1
诀窍在于您也需要重命名操作和别名,以便它们不是“重新定义”,因此对于我的“www”池,我的 vhost 配置如下所示:
<IfModule mod_fastcgi.c>
<FilesMatch \.php$>
SetHandler php-script
</FilesMatch>
Action php-script /php5-www.fcgi virtual
Alias /php5-www.fcgi /var/fastcgi/php5-www.fcgi
FastCGIExternalServer /var/fastcgi/php5-www.fcgi -socket /var/run/php5-fpm-www.sock
<Directory "/var/fastcgi">
Order allow,deny
<Files "php5-www.fcgi">
Order deny,allow
Deny from all
Allow from env=REDIRECT_STATUS
</Files>
</Directory>
</IfModule>
对于同一池中的 SSL:
<IfModule mod_fastcgi.c>
<FilesMatch \.php$>
SetHandler php-script
</FilesMatch>
Action php-script /php5-www-ssl.fcgi virtual
Alias /php5-www-ssl.fcgi /var/fastcgi/php5-www-ssl.fcgi
FastCGIExternalServer /var/fastcgi/php5-www-ssl.fcgi -socket /var/run/php5-fpm-www.sock
<Directory "/var/fastcgi">
Order allow,deny
<Files "php5-www-ssl.fcgi">
Order deny,allow
Deny from all
Allow from env=REDIRECT_STATUS
</Files>
</Directory>
</IfModule>
因此他们使用不同的名称,但指向同一个插座。