From b2be6de5224b01f7016032366d01d7f6111bdecd Mon Sep 17 00:00:00 2001 From: clyhtsuriva Date: Sat, 24 May 2025 21:48:29 +0200 Subject: Migrating values to .env & create .env.template --- grafana/.env.template | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 grafana/.env.template (limited to 'grafana/.env.template') diff --git a/grafana/.env.template b/grafana/.env.template new file mode 100644 index 0000000..6f75e98 --- /dev/null +++ b/grafana/.env.template @@ -0,0 +1,22 @@ +# Copy to '.env' and replace placeholder values +# ====================================== + +# ------------------------------ +# OAuth Credentials (REPLACE THESE) +# ------------------------------ +GF_AUTH_GENERIC_OAUTH_CLIENT_ID=your_client_id_here +GF_AUTH_GENERIC_OAUTH_CLIENT_SECRET=your_client_secret_here + +# ------------------------------ +# URLs (Update with your domains) +# ------------------------------ +GF_SERVER_ROOT_URL=https://your.grafana.domain +GF_AUTH_GENERIC_OAUTH_AUTH_URL=https://your.auth.provider/oauth/authorize/ +GF_AUTH_GENERIC_OAUTH_TOKEN_URL=https://your.auth.provider/oauth/token/ +GF_AUTH_GENERIC_OAUTH_API_URL=https://your.auth.provider/userinfo/ +GF_AUTH_SIGNOUT_REDIRECT_URL=https://your.auth.provider/logout/ + +# ------------------------------ +# Paths (Update if needed) +# ------------------------------ +GRAFANA_CONFIG_PATH=./custom.ini # Path to your custom Grafana config -- cgit v1.2.3