我正在配置 apache vhost 以使用 php7.4-fpm。
对主机的任何请求都会产生“400 错误请求”响应。
vhost定义如下:
DocumentRoot /var/www/test.localdev
Servername wootest.localdev
<Directory /var/www/test.localdev>
AllowOverride none
FallbackResource /index.php
Require all granted
Options Indexes FollowSymLinks MultiViews
</Directory>
ProxyPassMatch ^/(.*\.php(/.*)?)$ unix:/run/php/php7.4-fpm.sock|fcgi:/var/www/test.localdev/
DirectoryIndex index.php /index.php
ErrorLog ${APACHE_LOG_DIR}/test.localdev.error-log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/test.localdev.access-log combined
无论哪个 Web 客户端发出请求,都会存在该错误,因此我很可能排除客户端问题。