因此,我正在尝试使此手动编译的Apache版本与PHP一起运行。 Apache一切正常,但我不确定我是否已在PHP方面正确安装了东西,或者问题是否出在我的虚拟主机配置中。我将尝试添加任何相关信息:
当前已安装的PHP软件包
mod_fcgid-2.3.9-15.el7.x86_64
php-7.2.7-1.el7.remi.x86_64
php-cli-7.2.7-1.el7.remi.x86_64
php-common-7.2.7-1.el7.remi.x86_64
php-fpm-7.2.7-1.el7.remi.x86_64
php-gd-7.2.7-1.el7.remi.x86_64
php-json-7.2.7-1.el7.remi.x86_64
php-mbstring-7.2.7-1.el7.remi.x86_64
php-mysqlnd-7.2.7-1.el7.remi.x86_64
php-opcache-7.2.7-1.el7.remi.x86_64
php-pdo-7.2.7-1.el7.remi.x86_64
php-xml-7.2.7-1.el7.remi.x86_64
php-xmlrpc-7.2.7-1.el7.remi.x86_64
已加载的模块
access_compat_module (shared)
auth_basic_module (shared)
authn_core_module (shared)
authn_file_module (shared)
authz_core_module (shared)
authz_groupfile_module (shared)
authz_host_module (shared)
authz_user_module (shared)
autoindex_module (shared)
core_module (static)
deflate_module (shared)
dir_module (shared)
env_module (shared)
fcgid_module (shared)
filter_module (shared)
headers_module (shared)
http2_module (shared)
http_module (static)
log_config_module (shared)
mime_module (shared)
mpm_event_module (static)
proxy_fcgi_module (shared)
proxy_module (shared)
reqtimeout_module (shared)
rewrite_module (shared)
setenvif_module (shared)
socache_shmcb_module (shared)
so_module (static)
ssl_module (shared)
unixd_module (shared)
version_module (shared)
Apache的用户为httpd,组为www-data。
下面是虚拟主机配置(已根据一些文章尝试将内容混在一起,但对我来说实现尚不完全清楚)。
<VirtualHost *:80>
ServerName domain.com
ServerAlias www.domain.com
DocumentRoot /var/www/domain.com/httpdocs
ErrorLog /var/www/domain.com/logs/error_log
CustomLog /var/www/domain.com/logs/access_log combined
# <LocationMatch "^/(.*\.php(/.*)?)$">
# ProxyPass fcgi://127.0.0.1:9000/var/www/domain.com/httpdocs/$1
# </LocationMatch>
<IfModule mod_fastcgi.c>
AddHandler php7-fcgi-webmin .php
Action php7-fcgi-webmin /php7-fcgi-webmin
Alias /php7-fcgi-webmin /usr/lib/cgi-bin/php7-fcgi-webmin
<Directory "/usr/lib/cgi-bin">
Require all granted
</Directory>
<FilesMatch ".+\.ph(p[345]?|t|tml)$">
SetHandler php7-fcgi-webmin
</FilesMatch>
</IfModule>
<Directory /var/www/domain.com/httpdocs>
AllowOverride All
Require all granted
Options +FollowSymLinks -Indexes -Includes
</Directory>
</VirtualHost>
以下是该站点的FPM池配置。
[domain_com]
user = webmin
group = www-data
listen = 127.0.0.1:9000
listen.allowed_clients = 127.0.0.1
listen.owner = webmin
listen.group = www-data
pm = dynamic
pm.max_children = 50
pm.start_servers = 2
pm.min_spare_servers = 2
pm.max_spare_servers = 35
slowlog = /var/www/domain.com/logs/php_fpm_slow_log
php_flag[display_errors] = off
php_admin_value[error_log] = /var/www/domain.com/logs/php_fpm_error_log
php_admin_flag[log_errors] = on
php_admin_value[memory_limit] = 64M
php_admin_value[open_basedir] = /var/www/domain.com/httpdocs
php_value[session.save_handler] = files
php_value[session.save_path] = /var/lib/php/session
php_value[soap.wsdl_cache_dir] = /var/lib/php/wsdlcache
这就是我的位置。当我访问phpinfo页面时,它只是打印PHP文件的内容。 Apache或PHP-FPM日志中未记录任何内容。有人可以告诉我哪里可能出问题了吗?如果有需要,我可以再次执行整个过程,如果可以的话,也可以进行修复。
答案 0 :(得分:0)
对于Apache 2.4,最好的方法是使用FPM和SetHandler进行代理
SetHandler "proxy:fcgi://127.0.0.1:9000"
您可以阅读PHP Configuration Tips,其中解释了如何切换到FPM。
您可以删除“ php”软件包(该软件包提供了未编辑的mod_php)