From c7c8bd4ce2fcd9f2cd13278043b7baf1f8dd4f47 Mon Sep 17 00:00:00 2001 From: Chris van Meer Date: Wed, 19 Apr 2023 03:28:17 +0200 Subject: [PATCH] Updates to the UI block (#16328) 1. On the Consul address, following the recommendation for the HTTPS API on port 8501. 2. Add the hint to use HEX values for the colors. --- website/content/docs/configuration/ui.mdx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/website/content/docs/configuration/ui.mdx b/website/content/docs/configuration/ui.mdx index 54839f8f0..312e9e979 100644 --- a/website/content/docs/configuration/ui.mdx +++ b/website/content/docs/configuration/ui.mdx @@ -17,7 +17,7 @@ ui { enabled = true consul { - ui_url = "https://consul.example.com:8500/ui" + ui_url = "https://consul.example.com:8501/ui" } vault { @@ -51,7 +51,7 @@ and the configuration is individual to each agent. ## `consul` Parameters - `ui_url` `(string: "")` - Specifies the full base URL to a Consul - web UI (for example: `https://consul.example.com:8500/ui`. This URL + web UI (for example: `https://consul.example.com:8501/ui`. This URL is used to build links from the Nomad web UI to a Consul web UI. Note that this URL will not typically be the same one used for the agent's [`consul.address`]; the `consul.address` is the URL used @@ -75,9 +75,10 @@ and the configuration is individual to each agent. - `text` `(string: "")` - Specifies the text of the label that will be displayed in the header of the Web UI. - `background_color` `(string: "")` - The background color of the label to - be displayed. The Web UI will default to a black background. + be displayed. The Web UI will default to a black background. HEX values + may be used. - `text_color` `(string: "")` - The text color of the label to be displayed. - The Web UI will default to white text. + The Web UI will default to white text. HEX values may be used.