I'm trying to create a Bitbucket Cloud repository in my Bamboo instance, but I keep getting connection errors (specifically, 403s, when I try to load repos).
I know that the username and password is correct, because I have scrupulously tested this aspect of it.
I do see that I'm getting `XSRF check failed` back from the Bitbucket Cloud... why?
Is there a way to get any deep insight into the problem at hand so that i can resolve it?
Hi Dan,
Thank you for reaching out to us. I understand that you are getting an XSRF error when adding a Bitbucket Cloud repository.
When Bamboo retrieves the repositories on Bitbucket Cloud, it calls an endpoint on the Bamboo API first. In general, the source of the XSRF errors is Bamboo's Tomcat server not being configured for the correct URLs.
This can often be related to reverse proxies. Please check
<bamboo-install>/conf/server.xml
and add the following (replacing the placeholders as needed) to the first (uncommented) Connector in that file:
<!-- add this if the port you access Bamboo on is not 8085 -->
proxyPort=yyyy
<!-- add this if the URL you access Bamboo on is not its hostname -->
proxyName=mydomain.com
<!-- add the following if using https -->
secure=true
scheme=https
Once that has been added, please restart Bamboo for the changes to take effect.
Please do not hesitate to reach out if you have any other questions.
Cheers,
Elias | Bamboo Support
Thanks Elias -
I'm trying this now, but is this documented somewhere? If so, I must have missed it...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Dan,
Great! I'm glad to hear that our suggestion was able to help you out.
In case other users may find this answer helpful, could you please mark it as "Accepted" by clicking the check mark by my first reply?
Finally, for further details on the steps posted above, we do have some mentions of this in our proxy documentation, such as the following articles:
Thanks,
Elias | Bamboo Support
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.