You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I have a Bamboo 6.10.3 server installed with XSRF protection enabled, sitting behind Apache proxy. Everything works fine untill I add the header below to vhost config file
Header edit Set-Cookie ^(.*)$ $1;HttpOnly;Secure
It would not allow me do add users to groups and when I choose to log our I am getting this error
Unable to access this resource due to a failed XSRF check. Please ensure that a valid XSRF token is provided in the request.
Error code: XSRF_FAILURE_BAD_TOKEN
My connector looks like this
<Connector port="8085"
protocol="HTTP/1.1"
connectionTimeout="20000"
useBodyEncodingForURI="true"
redirectPort="443"
compression="on"
compressableMimeType="text/html,text/xml,text/plain,text/css,application/json,application/javascript,application/x-javascript"
secure="true"
scheme="https"
proxyName="bamboo.domain.com"
proxyPort="443" />
And this is my apache proxy configuration
ProxyPreserveHost On
ProxyRequests Off
SSLProxyEngine On
ProxyPass / http://localhost:8085/ connectiontimeout=5 timeout=300
ProxyPassReverse / http://localhost:8085/
been following this howto
https://confluence.atlassian.com/bamboo/securing-bamboo-with-apache-using-ssl-391087437.html
Similar apache config files work with Bitbucket, Jira, Confluence without a problem