在 Centos 6 上设置 Apache 2.2 + FastCGI + SuExec + PHP-FPM

在 Centos 6 上设置 Apache 2.2 + FastCGI + SuExec + PHP-FPM

我正在尝试遵循这一点这里有非常详细的说明,我只是从 www-data 用户更改为 apache 用户,并且使用 /var/www/hosts/sitename/public_html 而不是 /home/user/public_html

但是,我花了一整天的时间试图弄清楚为什么 php 文件内容没有被正确解析就显示出来。我似乎就是想不通。以下是我当前的配置:

/etc/httpd/conf.d/fastcgi.conf

User apache
Group apache

LoadModule fastcgi_module modules/mod_fastcgi.so

# dir for IPC socket files
FastCgiIpcDir /var/run/mod_fastcgi

# wrap all fastcgi script calls in suexec
FastCgiWrapper On

# global FastCgiConfig can be overridden by FastCgiServer options in vhost config
FastCgiConfig -idle-timeout 20 -maxClassProcesses 1

# sample PHP config
# see /usr/share/doc/mod_fastcgi-2.4.6 for php-wrapper script
# don't forget to disable mod_php in /etc/httpd/conf.d/php.conf!
#
# to enable privilege separation, add a "SuexecUserGroup" directive
# and chown the php-wrapper script and parent directory accordingly
# see also http://www.brandonturner.net/blog/2009/07/fastcgi_with_php_opcode_cache/
#
FastCgiServer /var/www/www-data/php5-fcgi
#AddType application/x-httpd-php .php

AddHandler php-fcgi .php
Action php-fcgi /fcgi-bin/php5-fcgi

Alias /fcgi-bin/ /var/www/www-data/

#FastCgiExternalServer /usr/lib/cgi-bin/php5-fcgi -socket /tmp/php5-fpm.sock -pass-header Authorization
#DirectoryIndex index.php
#
<Location /fcgi-bin/>
#    Order Deny,Allow
#    Deny from All
#    Allow from env=REDIRECT_STATUS
    SetHandler fcgid-script
    Options +ExecCGI
</Location>

/etc/httpd/conf.d/vhost.conf

<VirtualHost>
                DirectoryIndex index.php index.html index.shtml index.cgi

                SuexecUserGroup www.mysite.com mygroup

                Alias /fcgi-bin/ /var/www/www-data/www.mysite.com/
                DocumentRoot /var/www/hosts/mysite.com/w/w/w/www/

                <Directory /var/www/hosts/mysite.com/w/w/w/www/>
                        Options -Indexes FollowSymLinks                        
                        AllowOverride None
                        Order allow,deny
                        allow from all
                </Directory>
</VirtualHost>

PS:1. 另外,使用 PHP5.5,我是否还需要 FPM,或者它已经包含在内?2. 我正在使用 mod_fastcgi,不确定这是否是问题所在,我是否应该切换到 mod_fcgid?互联网上似乎有相互矛盾的记录,关于哪一个更好。我在机器上运行了许多虚拟主机,希望能够为每个用户提供自己的 opcache

答案1

首先,你的做法太过了。

您不需要 suphp + php-fpm,因为它们基本上做同样的事情。

如果您想要多用户多虚拟主机环境,您应该使用以下堆栈:

Apache + mod_fastcgi + php-fpm

php-fpm 允许您定义可以在具有完全不同的 php 设置的不同用户下运行的池。

对于该配置,您需要将 apache 恢复为其基本配置:

user apache
group apache

我假设你将在用户主目录 public_html 文件夹中运行你的虚拟主机

您需要将 /home/%user% chmod 更改为 755,并将 public_html 的组更改为 apache

chown %user%:apache /home/%user%/public_html
chomod 755 /home/%user%

然后,你将为用户定义 php-fpm 池

[%user%]

listen = /var/run/php-fpm/%user%.socket
listen.backlog = -1
listen.allowed_clients = 127.0.0.1
listen.owner = web
listen.group = www
listen.mode = 0666

user = %user%
group = %userg%

#pm.status_path = /fpm-status
pm = ondemand
pm.max_children = 20
#pm.start_servers = 6
#pm.min_spare_servers = 5
#pm.max_spare_servers = 10
pm.max_requests = 500
request_terminate_timeout = 600s
rlimit_files = 131072
rlimit_core = unlimited
catch_workers_output = yes



php_admin_value[error_log] = /home/%user%/fpm-error.log
php_flag[display_errors] = on
php_flag[display_startup_errors] = on
php_admin_flag[log_errors] = on
php_admin_value[memory_limit] = 128M
php_value[session.save_handler] = files
php_value[session.save_path] = /tmp

请注意,这是一个示例文件,我建议在生产机器上使用之前对其进行修改

安装并配置 mod_fastcgi 后,你需要为每个用户添加一个特殊的 php 处理程序,如下所示

nano /etc/httpd/conf.d/php-fpm.conf

Action fcgi-php-fpm /fcgi-php-fpm virtual
Alias /fcgi-php-fpm /fcgi-php-fpm
FastCgiExternalServer /fcgi-php-fpm -socket /var/run/php-fpm/web.socket -pass-header Authorization -idle-timeout 180

在你的vhost文件中

<VirtualHost *:80>

 ServerName beforeafter.local
 ServerAlias www.beforeafter.local
 DocumentRoot /home/web/public_html/before
 DirectoryIndex index.htm index.html index.php
 ErrorLog  /home/web/ba.error.log
 CustomLog /home/web/ba.access.log combined
 UseCanonicalName Off

 Options FollowSymlinks +Indexes
 RewriteEngine On

 AddType text/html .php
 AddHandler fcgi-php-fpm .php

 <Directory />
  AllowOverride All
 </Directory>
</VirtualHost>

您的操作名称和处理程序名称必须匹配才能正常工作。

此后每个用户都以自己的名称运行php。

我建议禁用所有不必要的 apache 模块以加快速度,如果您不熟练配置它,请关闭 SELinux。

相关内容