From 4dc6c93cdbef453bb6c9aac030070d3ce1cdbf08 Mon Sep 17 00:00:00 2001 From: John Ritsema Date: Tue, 7 Mar 2023 07:28:51 -0500 Subject: [PATCH] docs: adds note about dynamic config (#4882) * docs: adds note about dynamic config * less technical verbiage * removes `dynamic configuration` verbiage * list all replaceable values --- docs/docs/configuration/index.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/docs/docs/configuration/index.md b/docs/docs/configuration/index.md index 9db217f4f..8fce13baf 100644 --- a/docs/docs/configuration/index.md +++ b/docs/docs/configuration/index.md @@ -36,6 +36,23 @@ It is not recommended to copy this full configuration file. Only specify values ::: +**Note:** The following values will be replaced at runtime by using environment variables + +- `{FRIGATE_MQTT_USER}` +- `{FRIGATE_MQTT_PASSWORD}` +- `{FRIGATE_RTSP_USER}` +- `{FRIGATE_RTSP_PASSWORD}` + +for example: +```yaml +mqtt: + user: "{FRIGATE_MQTT_USER}" + password: "{FRIGATE_MQTT_PASSWORD}" +``` +```yaml +- path: rtsp://{FRIGATE_RTSP_USER}:{FRIGATE_RTSP_PASSWORD}@10.0.10.10:8554/unicast +``` + ```yaml mqtt: # Optional: Enable mqtt server (default: shown below)