2017-11-26 22:44:32 +01:00
---
date: "2017-04-15T14:56:00+02:00"
title: "Customizing Gitea"
slug: "customizing-gitea"
weight: 9
toc: false
draft: false
menu:
sidebar:
parent: "advanced"
name: "Customizing Gitea"
weight: 9
identifier: "customizing-gitea"
---
# Customizing Gitea
2018-01-08 23:48:42 +01:00
Customizing Gitea is typically done using the `custom` folder. This is the central
place to override configuration settings, templates, etc.
2017-11-26 22:44:32 +01:00
2018-01-08 23:48:42 +01:00
If Gitea is deployed from binary, all default paths will be relative to the gitea
binary. If installed from a distribution, these paths will likely be modified to
the Linux Filesystem Standard. Gitea will create required folders, including `custom/` .
Application settings are configured in `custom/conf/app.ini` . Distributions may
provide a symlink for `custom` using `/etc/gitea/` .
2017-11-26 22:44:32 +01:00
2018-01-08 23:48:42 +01:00
- [Quick Cheat Sheet ](https://docs.gitea.io/en-us/config-cheat-sheet/ )
- [Complete List ](https://github.com/go-gitea/gitea/blob/master/custom/conf/app.ini.sample )
2017-11-26 22:44:32 +01:00
2018-01-08 23:48:42 +01:00
If the `custom` folder can't be found next to the binary, check the `GITEA_CUSTOM`
environment variable; this can be used to override the default path to something else.
`GITEA_CUSTOM` might, for example, be set by an init script.
- [List of Environment Variables ](https://docs.gitea.io/en-us/specific-variables/ )
**Note:** Gitea must perform a full restart to see configuration changes.
2017-11-26 22:44:32 +01:00
## Customizing /robots.txt
2018-01-08 23:48:42 +01:00
To make Gitea serve a custom `/robots.txt` (default: empty 404), create a file called
`robots.txt` in the `custom` folder with [expected contents ](http://www.robotstxt.org/ ).
2017-11-26 22:44:32 +01:00
## Serving custom public files
2018-01-08 23:48:42 +01:00
To make Gitea serve custom public files (like pages and images), use the folder
`custom/public/` as the webroot. Symbolic links will be followed.
2017-11-26 22:44:32 +01:00
2018-01-08 23:48:42 +01:00
For example, a file `image.png` stored in `custom/public/` , can be accessed with
the url `http://gitea.domain.tld/image.png` .
2017-11-26 22:44:32 +01:00
## Changing the default avatar
2018-01-08 23:48:42 +01:00
Place the png image at the following path: `custom/public/img/avatar\_default.png`
2017-11-26 22:44:32 +01:00
## Customizing Gitea pages
2018-01-08 23:48:42 +01:00
The `custom/templates` folder allows changing every single page of Gitea. Templates
to override can be found in the `templates` directory of Gitea source. Override by
making a copy of the file under `custom/templates` using a full path structure
matching source.
2017-11-26 22:44:32 +01:00
2018-01-08 23:48:42 +01:00
Any statement contained inside `{{` and `}}` are Gitea's templete syntax and
shouldn't be touched without fully understanding these components.
2017-11-26 22:44:32 +01:00
2018-01-08 23:48:42 +01:00
To add custom HTML to the header or the footer of the page, in the `templates/custom`
directory there is `header.tmpl` and `footer.tmpl` that can be modified. This can be
a useful place to add custom CSS files or additional Javascript.
2017-12-03 01:26:06 +01:00
2018-01-10 07:19:50 +01:00
If all you want is to add extra links to the top navigation bar, or extra tabs to the repository view, you can put them in `extra_links.tmpl` and `extra_tabs.tmpl` inside your `custom/templates/custom/` directory.
2017-11-26 22:44:32 +01:00
## Customizing gitignores, labels, licenses, locales, and readmes.
2018-01-08 23:48:42 +01:00
Place custom files in corresponding sub-folder under `custom/options` .