2020-01-24 09:33:59 -06:00
|
|
|
+++
|
|
|
|
title = "White-labeling"
|
|
|
|
description = "White-labeling"
|
|
|
|
keywords = ["grafana", "white-labeling", "enterprise"]
|
|
|
|
aliases = ["/docs/grafana/latest/enterprise/white-labeling/"]
|
|
|
|
type = "docs"
|
|
|
|
[menu.docs]
|
|
|
|
name = "White-labeling"
|
|
|
|
parent = "enterprise"
|
|
|
|
weight = 5
|
|
|
|
+++
|
|
|
|
|
|
|
|
# White labeling
|
|
|
|
|
2020-02-14 11:34:39 -06:00
|
|
|
> Only available in Grafana Enterprise v6.6+.
|
2020-01-24 09:33:59 -06:00
|
|
|
|
|
|
|
{{< docs-imagebox img="/img/docs/v66/whitelabeling_1.png" max-width="800px" caption="White labeling example" >}}
|
|
|
|
|
2020-02-18 14:28:59 -06:00
|
|
|
Grafana Enterprise has white labeling options in the `grafana.ini` file (can also be set via ENV variables).
|
2020-01-24 09:33:59 -06:00
|
|
|
|
|
|
|
You can change the following elements:
|
|
|
|
|
|
|
|
- Login Background
|
|
|
|
- Login Logo
|
|
|
|
- Side menu top logo
|
|
|
|
- Footer & Help menu links
|
|
|
|
- Fav icon (shown in browser tab)
|
|
|
|
|
2020-02-18 14:28:59 -06:00
|
|
|
> You will have to host your logo and other images used by the white labeling feature separately.
|
2020-01-24 09:33:59 -06:00
|
|
|
|
|
|
|
```ini
|
|
|
|
# Enterprise only
|
|
|
|
[white_labeling]
|
2020-02-14 10:11:08 -06:00
|
|
|
# Set to complete URL to override login logo
|
2020-01-24 09:33:59 -06:00
|
|
|
;login_logo =
|
|
|
|
|
|
|
|
# Set to complete css background expression to override login background
|
|
|
|
# example: login_background = url(http://www.bhmpics.com/wallpapers/starfield-1920x1080.jpg)
|
|
|
|
;login_background =
|
|
|
|
|
2020-02-14 10:11:08 -06:00
|
|
|
# Set to complete URL to override menu logo
|
2020-01-24 09:33:59 -06:00
|
|
|
;menu_logo =
|
|
|
|
|
2020-02-14 10:11:08 -06:00
|
|
|
# Set to complete URL to override fav icon (icon shown in browser tab)
|
2020-01-24 09:33:59 -06:00
|
|
|
;fav_icon =
|
|
|
|
|
2020-02-14 10:11:08 -06:00
|
|
|
# Set to complete URL to override apple/ios icon
|
2020-01-24 09:33:59 -06:00
|
|
|
;apple_touch_icon =
|
|
|
|
|
|
|
|
# Below is an example for how to replace the default footer & help links with 2 custom links
|
|
|
|
;footer_links = support guides
|
|
|
|
;footer_links_support_text = Support
|
|
|
|
;footer_links_support_url = http://your.support.site
|
|
|
|
;footer_links_guides_text = Guides
|
|
|
|
;footer_links_guides_url = http://your.guides.site
|
|
|
|
```
|
2020-02-20 09:01:58 -06:00
|
|
|
|
|
|
|
|
|
|
|
ENV Variables:
|
|
|
|
```
|
|
|
|
- GF_WHITE_LABELING_FOOTER_LINKS=support guides
|
|
|
|
- GF_WHITE_LABELING_FOOTER_LINKS_SUPPORT_TEXT=Support
|
|
|
|
- GF_WHITE_LABELING_FOOTER_LINKS_SUPPORT_URL=http://your.support.site
|
|
|
|
- GF_WHITE_LABELING_FOOTER_LINKS_GUIDES_TEXT=Guides
|
|
|
|
- GF_WHITE_LABELING_FOOTER_LINKS_GUIDES_URL=http://your.guides.site
|
|
|
|
```
|