|
Since the manual steps of this process modify your Bamboo distribution, 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.
Note that if you are running Bamboo behind Apache:
|