现在我正在运行 Apache,使用 mod_php 提供 php 文件。在 fastcgi 模式下运行 PHP 是否会获得性能增强?目前此服务器上有两个虚拟主机。我遵循了本教程,该教程是我参考三个不同的教程制作的: https://docs.google.com/document/d/1Pk9tZ8Vg1IbrvVUVPusnCYnRUZCOLRvdXkDYEqm_-4Y/edit?usp=sharing
但重新启动 Apache 后,我收到错误。可能是什么问题?
File not found: /php5-fcgi/index.html
我使用的服务器是 CentOS 服务器,其规格如下:
CentOS release 6.6 (Final)
Pentium(R) Dual-Core CPU E5200 @ 2.50GHz
MemTotal: 1910040 kB
MemFree: 586200 kB
Buffers: 259076 kB
Cached: 646432 kB
250 GB HDD
Apache/2.2.15
PHP 5.4.37
mysqladmin Ver 8.42 Distrib 5.5.41, for Linux on x86_64
答案1
您的 apache 配置缺少一些必需的参数。这是对我有用的配置:
<IfModule mod_fastcgi.c>
User apache
Group apache
AddHandler fastcgi-script .fcgi
FastCgiConfig -idle-timeout 20 -maxClassProcesses 1
FastCgiIpcDir /var/run/mod_fastcgi
Alias /php.fcgi /var/www/cgi-bin/php.fcgi
AddType application/x-httpd-fastphp .php
Action application/x-httpd-fastphp /php.fcgi
FastCGIExternalServer /var/www/cgi-bin/php.fcgi -socket /var/run/php-fpm/pool-www.sock -idle-timeout 35
<Directory "/var/www/cgi-bin">
Options +Indexes FollowSymLinks +ExecCGI
AllowOverride AuthConfig FileInfo
Order allow,deny
Allow from all
<Files "php.fcgi">
Options +Indexes FollowSymLinks +ExecCGI
Order deny,allow
Allow from All
</Files>
</Directory>
</IfModule>
将内容放入 /etc/httpd/conf.d/fastcgi.conf,然后在 vhost 文件中只需使用 DirectoryIndex。
当然,还要加上适当的:
listen = /var/run/php-fpm/pool-www.sock
在 /etc/php-fpm.d/your_custom.conf 中