From 28d5731b870c8ab982348ac1fb57cf69e64b5bb3 Mon Sep 17 00:00:00 2001 From: Tobias Hernstig <30827238+thernstig@users.noreply.github.com> Date: Thu, 8 Nov 2018 08:20:03 +0100 Subject: [PATCH] Documentation: Rename "admin panel" to "dashboard --- docs/configuration/api.md | 4 ++-- docs/configuration/ping.md | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/configuration/api.md b/docs/configuration/api.md index 62e1a9537..7360ea8ec 100644 --- a/docs/configuration/api.md +++ b/docs/configuration/api.md @@ -106,10 +106,10 @@ entryPoint = "foo" entryPoint = "bar" ``` -In the above example, you would access a regular path, administration panel, and health-check as follows: +In the above example, you would access a regular path, dashboard, and health-check as follows: * Regular path: `http://hostname:80/path` -* Admin Panel: `http://hostname:8083/` +* Dashboard: `http://hostname:8083/` * Ping URL: `http://hostname:8082/ping` In the above example, it is _very_ important to create a named dedicated entry point, and do **not** include it in `defaultEntryPoints`. diff --git a/docs/configuration/ping.md b/docs/configuration/ping.md index 8c523f4c0..7ec13d7f3 100644 --- a/docs/configuration/ping.md +++ b/docs/configuration/ping.md @@ -27,10 +27,10 @@ The `/ping` health-check URL is enabled with the command-line `--ping` or config Thus, if you have a regular path for `/foo` and an entrypoint on `:80`, you would access them as follows: * Regular path: `http://hostname:80/foo` -* Admin panel: `http://hostname:8080/` +* Dashboard: `http://hostname:8080/` * Ping URL: `http://hostname:8080/ping` -However, for security reasons, you may want to be able to expose the `/ping` health-check URL to outside health-checkers, e.g. an Internet service or cloud load-balancer, _without_ exposing your administration panel's port. +However, for security reasons, you may want to be able to expose the `/ping` health-check URL to outside health-checkers, e.g. an Internet service or cloud load-balancer, _without_ exposing your dashboard's port. In many environments, the security staff may not _allow_ you to expose it. You have two options: @@ -40,7 +40,7 @@ You have two options: ### Ping health check on a regular entry point -To proxy `/ping` from a regular entry point to the administration one without exposing the panel, do the following: +To proxy `/ping` from a regular entry point to the administration one without exposing the dashboard, do the following: ```toml defaultEntryPoints = ["http"]