Allow to specify default theme
This commit is contained in:
parent
7e7626ed2a
commit
1f88e7238a
3 changed files with 7 additions and 0 deletions
|
@ -69,6 +69,8 @@ The following code has been tested with Debian 8, it should work on Ubuntu as we
|
|||
* `gitea_enable_captcha`: Do you want to enable captcha's ? (true/false)
|
||||
* `gitea_secret_key`: Cookie secret key
|
||||
* `gitea_internal_token`: Internal API token
|
||||
* `gitea_themes`: List of enabled themes
|
||||
* `gitea_theme_default`: Default theme
|
||||
|
||||
### Limits
|
||||
|
||||
|
|
|
@ -64,3 +64,6 @@ gitea_oauth2_jwt_secret: ChangeMe
|
|||
|
||||
gitea_metrics_enabled: false
|
||||
gitea_metrics_token: ~
|
||||
|
||||
gitea_themes: gitea,arc-green
|
||||
gitea_theme_default: gitea
|
||||
|
|
|
@ -26,6 +26,8 @@ DISABLE_HTTP_GIT = {{ gitea_disable_http_git }}
|
|||
[ui]
|
||||
; Whether the email of the user should be shown in the Explore Users page
|
||||
SHOW_USER_EMAIL = {{ gitea_show_user_email }}
|
||||
TMEMES = {{ gitea_themes }}
|
||||
DEFAULT_THEME = {{ gitea_theme_default }}
|
||||
|
||||
[server]
|
||||
; The protocol the server listens on. One of 'http', 'https', 'unix' or 'fcgi'.
|
||||
|
|
Loading…
Reference in a new issue