From 61eba3e275c3bd3074a212a42812bce1eab288e2 Mon Sep 17 00:00:00 2001 From: Tobias Skarhed <1438972+tskarhed@users.noreply.github.com> Date: Thu, 7 May 2020 11:00:47 +0200 Subject: [PATCH] Docs: New whitelabel settings (#24345) * Update whitelabel settings * Update feedback --- docs/sources/enterprise/white-labeling.md | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/docs/sources/enterprise/white-labeling.md b/docs/sources/enterprise/white-labeling.md index 6ab348ce8b8..ccd16cc6d30 100644 --- a/docs/sources/enterprise/white-labeling.md +++ b/docs/sources/enterprise/white-labeling.md @@ -26,6 +26,9 @@ You can change the following elements: - Side menu top logo - Footer and help menu links - Fav icon (shown in browser tab) +- Login title (will not appear if a login logo is set, Grafana v7.0+) +- Login subtitle (will not appear if a login logo is set, Grafana v7.0+) +- Login box background (Grafana v7.0+) > You will have to host your logo and other images used by the white labeling feature separately. Make sure Grafana can access the URL where the assets are stored. @@ -39,13 +42,22 @@ The configuration file in Grafana Enterprise contains the following options. Eac # Set to your company name to override application title ;app_title = +# Set to main title on the login page (Will not appear if a login logo is set) +;login_title = + +# Set to login subtitle (Will not appear if a login logo is set) +;login_subtitle = + # Set to complete URL to override login logo ;login_logo = -# Set to complete css background expression to override login background +# Set to complete CSS background expression to override login background # example: login_background = url(http://www.bhmpics.com/wallpapers/starfield-1920x1080.jpg) ;login_background = +# Set to complete CSS background expression to override login box background +;login_box_background = + # Set to complete URL to override menu logo ;menu_logo = @@ -73,5 +85,5 @@ 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 +GF_WHITE_LABELING_FOOTER_LINKS_GUIDES_URL=http://your.guides.site ```