PHP-FPM无法正常工作

问题描述 投票:0回答:1

我正在使用Debian Squeeze,并使用fastcgi设置PHP-FPM。我在同一主机上定义了多个虚拟主机。我为每个池配置定义了chroot,但是以某种方式可以更改目录并超过池conf的根目录定义。

conf文件中的

disable_functions不能正常工作。我还没有找出原因。

示例文件如下:

/ etc / php5 / fpm / pool.d / foo.conf:

[foo]

user = foo
group = foo

listen = 127.0.0.1:9018
listen.allowed_clients = 127.0.0.1

pm = dynamic
pm.max_children = 5
pm.start_servers = 2
pm.min_spare_servers = 1
pm.max_spare_servers = 3

chroot = /var/www/foo
chdir = /

php_admin_value[disable_functions] = dir,chdir,opendir,readdir
php_admin_value[doc_root] = /var/www/foo
php_admin_value[open_basedir] = /var/www/foo

access.log = /var/log/$pool.access.log
access.format = "%R - %u %t \"%m %r%Q%q\" %s %f %{mili}d %{kilo}M %C%%"

/ etc / apache2 / sites-enables / foo.com:

<VirtualHost 19x.xxx.xxx.xx>
DocumentRoot /var/www/foo
ServerName foo.com

<IfModule mod_fastcgi.c>

     FastCgiExternalServer /foocgi/php5-wrapper -host 127.0.0.1:9018 -user foouser -group foogroup


    ScriptAlias /foocgi/ /var/www/foo/cgi-bin/

    AddHandler php5-fastcgi .php
    Action php5-fastcgi /foocgi/php5-wrapper
    AddType application/x-httpd-php .php

    <Directory /var/www/foo/cgi-bin/>
         SetHandler fastcgi-script
        Options +ExecCGI
    </Directory>

</IfModule>

<Directory /var/www/foo>
allow from all
Options -Indexes SymLinksIfOwnerMatch
</Directory>
</VirtualHost>

/ var / www / foo / cgi-bin / php5-wrapper:

#!/bin/sh
PHPRC=/etc/php5/cgi/
export PHPRC
#export PHP_FCGI_MAX_REQUESTS=5000
#export PHP_FCGI_CHILDREN=8
exec /usr/lib/cgi-bin/php

/ etc / apache2 / mods-enabled / fastcgi.conf:

<IfModule mod_fastcgi.c>
 FastCgiConfig -autoUpdate -singleThreshold 100 -killInterval 300 -idle-timeout 240 -maxClassProcesses 1 -pass-header HTTP_AUTHORIZATION
 FastCgiWrapper /usr/lib/apache2/suexec

 <Directory "/var/www/cgi-bin/">
        AllowOverride none
        Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
        Order allow,deny
        Allow from all
  </Directory>
</IfModule>

/ var / log / foo.access.log为空,尽管netstat输出上的端口9018为LISTEN。该网站也被打开,没有错误。关于chroot问题或如何使disable_functions起作用的任何想法吗?

apache2 debian fastcgi php
1个回答
0
投票

您可以显示您的phpinfo()吗?

可以从/etc/php5/cgi/php.ini和php-fpm配置,pool.d / *或/etc/php5/fpm/php.ini加载PHP.ini

我这样说:

#!/bin/sh
PHPRC=/etc/php5/cgi/
export PHPRC
#export PHP_FCGI_MAX_REQUESTS=5000
#export PHP_FCGI_CHILDREN=8
exec /usr/lib/cgi-bin/php

php5-fpm通常在/ usr / sbin / php5-fpm中

© www.soinside.com 2019 - 2024. All rights reserved.