[Bamboo Knowledge Base]
There are various reasons why you may wish to change Bamboo's context path. Two of those are:
Upgrade Note
Since the manual steps of this process modify your Bamboo server, you will need to repeat Steps 1-6 each time you upgrade.
Changing the context path for Bamboo:
bin/stop-bamboo.bat
on Windows or /bin/stop-bamboo.sh
on OSX or Linux.Edit conf/server.xml
and find the element below:
<Context path="" docBase="${catalina.home}/atlassian-bamboo" reloadable="false" useHttpOnly="true"/>
Update the path
attribute to reflect the context path that you want Bamboo to be accessible at, e.g. "/bamboo":
<Context path="/bamboo" docBase="${catalina.home}/atlassian-bamboo" reloadable="false" useHttpOnly="true"/>
Then save the file.
bin/start-bamboo.bat
on Windows or /bin/start-bamboo.sh
on OSX or Linux.Once Bamboo has started, go to the administration area and click General Configuration (under 'System'). Add the new context path to your base URL:
https://my-bamboo-hostname:8085/bamboo
Click Save.
Bamboo + Apache
Note that if you are running Bamboo behind Apache: