如何诊断不能在Apache中使用反向代理服务器

我已经为httpd.conf添加了一个反向代理服务器的部分,但似乎没有发生任何事情。 没有任何东西正在写入错误或传输日志。

有关如何诊断故障的任何build议?

httpd.conf文件

<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>