我正在尝试使用apache为fisheye / crucible设置反向代理 但是,我得到了:
服务不可用
由于维护停机或容量问题,服务器暂时无法为您的请求提供服务。请稍后再试。
我做错了什么?
以下是配置文件:
httpd.conf文件的结尾
/etc/httpd/conf/httpd.conf中
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_connect_module modules/mod_proxy_connect.so
LoadModule proxy_http_module modules/mod_proxy_http.so
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyRequests Off
ProxyPass / http://fisheye.example.com:8060/
ProxyPassReverse / http://fisheye.example.com:8060/
config.xml中
<web-server site-url="http://fisheye.example.com" context="/">
<http bind=":8060" proxy-host="fisheye.example.com" proxy-port="80" proxy-scheme="http"/>
</web-server>
答案 0 :(得分:0)
如果您使用的是Apache 2.4+,则可能需要将Allow from all
更改为Require all granted
- 请参阅https://serverfault.com/a/549559/71216