Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Proxying Bamboo through httpd

ebarrere June 12, 2012

Anyone successfully gotten Bamboo running through an Apache SSL proxy? I am trying the instructions here with no luck:

https://confluence.atlassian.com/display/BAMKB/Running+bamboo+behind+apache+httpd+proxy

any help appreciated!

2 answers

0 votes
Adam Myatt
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
June 12, 2012

Make sure in your wrapper.conf you set it to use the jetty.xml file.

In the jetty file use an SSL connector as such :

<Call name="addConnector">

<Arg>

<New class="org.eclipse.jetty.server.ssl.SslSelectChannelConnector">

<Set name="host"><Property name="jetty.host" /></Set>

<Set name="port"><Property name="jetty.port" default="8443"/></Set>

<Set name="Keystore"><SystemProperty name="jetty.home" default="."/>/keystore</Set>

<Set name="Password">MYCERTPASSWORD</Set>

<Set name="KeyPassword">MYCERTPASSWORD</Set>

</New>

</Arg>

</Call>

Where the /keystore is the actual keystore file. YOu need to use keytool to import a self-signed cert or regular cert-authority signed cert (either is fine). Then this forces Bamboo to listen on a secure port.

In your Apache HTTPD.conf file you need proxypass and proxypassreverse to use the 8443 port, not the defautl http-based on.

ProxyPass /cit https://MYBAMBOOURL:8443/cit
ProxyPassReverse /cit https://MYBAMBOOURL:8443/cit

0 votes
Colin Goudie
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
June 12, 2012

Can you provide any specific issues you are having. We have bamboo running behind apache on many sites. But hard to tell what your issue is without more detail

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events