我已经从源代码编译了 PHP 并将其安装到/opt/php/5.5.15/
我还安装了(带有yum
)httpd
和mod_fcgid
。
我正在尝试配置一个虚拟主机来执行 php 像这样:
<VirtualHost *:80>
ServerAdmin [email protected]
DocumentRoot /var/www/my-site.example.com/site/public
ServerName my-site.example.com
ErrorLog /var/www/my-site.example.com/logs/my-site.example.com-error_log
CustomLog /var/www/my-site.example.com/logs/my-site.example.com-access_log common
<Directory /var/www/my-site.example.com/site/public>
Options +indexes
AllowOverride all
Order allow,deny
Allow from all
Action application/x-httpd-php /php-5.5.15-bin/php-cgi
</Directory>
</VirtualHost>
<IfModule mod_fcgid.c>
IdleTimeout 3600
ProcessLifeTime 7200
MaxProcessCount 64
DefaultMaxClassProcessCount 8
IPCConnectTimeout 300
IPCCommTimeout 7200
BusyTimeout 300
<FilesMatch ".+\.ph(p[345]?|t|tml)$">
SetHandler application/x-httpd-php
</FilesMatch>
ScriptAlias /php-5.5.15-bin/ /opt/php/5.5.15/bin/
<Directory "/opt/php">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
</IfModule>
我收到此错误:
[Thu Aug 14 17:36:20 2014] [error] [client 127.0.0.1] (13)Permission denied: exec of '/opt/php/5.5.15/bin/php-cgi' failed, referer: http://my-site.example.com:10080/
[Thu Aug 14 17:36:20 2014] [error] [client 127.0.0.1] Premature end of script headers: php-cgi, referer: http://my-site.example.com:10080/
我已经尝试过chmod 777 php-cgi
和chown apache:apache php-cgi
,两者都没有什么区别。
有任何想法吗?
注意:此设置在 Debian 上运行良好。
答案1
所以事实证明 SELinux 拒绝了 php-cgi bin 上的 httpd 执行权限。
查看 /var/log/audit/audit.log 显示了这一点。
运行以下命令允许它:
sudo chcon -t httpd_sys_script_exec_t /opt/php/5.5.15/bin/php-cgi