diff options
Diffstat (limited to 'grafana/.env.template')
-rw-r--r-- | grafana/.env.template | 22 |
1 files changed, 22 insertions, 0 deletions
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 |