如何诊断 Apache 中不工作的反向代理服务器

如何诊断 Apache 中不工作的反向代理服务器

我已在 httpd.conf 中添加了反向代理服务器部分,但似乎没有任何反应。错误日志和传输日志均未写入任何内容。

关于如何诊断故障有什么建议吗?

httpd配置文件

<VirtualHost *:80>
  ProxyPreserveHost On
  ServerName www.domain.org.uk
  ServerAlias domain
  LogLevel Info
  ErrorLog /var/log/httpd/domain-error_log
  TransferLog /var/log/httpd/domain-access_log
  <Location />
    ProxyPass http://domain.org.uk/
    ProxyPassReverse http://domain.org.uk/
    Order allow,deny
    Allow from all
  </Location>
</VirtualHost>

相关内容