diff options
author | clyhtsuriva <aimeric@adjutor.xyz> | 2025-05-24 21:48:29 +0200 |
---|---|---|
committer | clyhtsuriva <aimeric@adjutor.xyz> | 2025-05-24 21:48:29 +0200 |
commit | b2be6de5224b01f7016032366d01d7f6111bdecd (patch) | |
tree | 82e4bb34ff4a70b39810f817a324fadad3b3a128 /grafana/.env.template | |
parent | 89d372070101d1b251196340582bd08cd3a63231 (diff) |
Migrating values to .env & create .env.template
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 |