简体   繁体   中英

setting up reverse proxy for fisheye/crucible using apache

I am trying to setup reverse proxy using apache for fisheye/crucible However, I am getting:

Service Unavailable

The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.

What am I doing wrong?

Here are the configuration files:

end of the httpd.conf file

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

如果您使用的是Apache 2.4+,则可能需要将“ Allow from all更改为“ Require all granted -请参阅https://serverfault.com/a/549559/71216

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM