How to Edit the Footer in Bitbucket Server
Platform Notice: Data Center Only - This article only applies to Atlassian products on the Data Center platform.
Note that this KB was created for the Data Center version of the product. Data Center KBs for non-Data-Center-specific features may also work for Server versions of the product, however they have not been tested. Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.
*Except Fisheye and Crucible
Summary
Each page of the Bitbucket Server's web interface includes a footer that is similar to the one below:

There are two elements of this footer that can be customized:
The Contact Support link
The line that is highlighted in the screenshot above
Starting with Bitbucket Server version 6.2, you can customize the Contact Support link, by adding to your
bitbucket.properties
file a line similar to the following:footer.links.contact.support=https://mylink.example.com
and restarting your Bitbucket Server (or Data Center nodes), in order to apply the change.
For more information please refer to: Bitbucket Server config properties - Footer.
You can also customize the highlighted line of the footer, as needed, using the method described below.
'Powered by Atlassian'
Under Atlassian's customer terms, Atlassian customers may not remove proprietary Atlassian attributions or notices that are present in the Products. This may include text like "Powered by Atlassian" in a footer.
Solution
Editing Information in the footer
Open the
bitbucket-webapp.properties
fileFor Bitbucket Server versions prior to 5.0, this file is located in:
<BITBUCKET_INSTALL>/atlassian-bitbucket/WEB-INF/classes/i18n
For Bitbucket Server version 5.0 or higher, this file is located in:
<BITBUCKET_INSTALL>/app/WEB-INF/classes/i18n
Find the following line:
1
bitbucket.web.global.footer.licence.message=Git repository management for enterprise teams powered by {0}
You can edit the value of this variable to display your custom footer, then save the file.
Stop and start your Bitbucket Server.
Open your browser, log into Bitbucket Server and verify if the footer indeed reflects your change.
Changing the footer to a language other than English works. However, if the changes are not being applied, try adding the UTF-8 encoding to represent the message you want to add. That is applicable only if the language in profile is set to English.
If you make a backup copy of the {noformat}bitbucket-webapp.properties{noformat} file prior to modifying this file, make sure you move the backup file to a different folder.
Editing information in the footer of the language pack (for other languages than English)
Locate bitbucket-language-pack-<locale-version>.jar located under <BITBUCKET_INSTALL>/app/WEB-INF/atlassian-bundled-plugins
Unpack the JAR with archive tools of your OS
In the unpacked JAR, you need to edit WEB-INF/classes/i18n/bitbucket-webapp_<locale>.properties
Adjust the same bitbucket.web.global.footer.licence.message to the required
Repack the JAR file https://docs.oracle.com/javase/tutorial/deployment/jar/build.html
Replace the old JAR with a new one
Restart the customized instance
The language pack is bundled plugin so the changes need to be reapplied with every minor upgrade of the customized instance including Zero Downtime upgrade. The customizations are not covered by
.
Was this helpful?