diff options
| author | Mumtahin Farabi <[email protected]> | 2026-05-11 17:36:03 -0400 |
|---|---|---|
| committer | Mumtahin Farabi <[email protected]> | 2026-05-11 17:36:03 -0400 |
| commit | 160b21028518c7b3802220940d6e5c7dab8d022e (patch) | |
| tree | d73dfc14f968b7b280b2005f07578e4420c83a1b | |
| parent | b2e18a66664de3c0f842eadd59ebd60886ba59e7 (diff) | |
chore(grafana/conf/sample): scaffold setup
Signed-off-by: Mumtahin Farabi <[email protected]>
| -rw-r--r-- | grafana/conf/sample.ini | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/grafana/conf/sample.ini b/grafana/conf/sample.ini new file mode 100644 index 0000000..b16231d --- /dev/null +++ b/grafana/conf/sample.ini @@ -0,0 +1,84 @@ + +[server] +http_port = 3000 +enable_gzip = true + +# [database] +# type = postgres +# host = 127.0.0.1:5432 +# name = grafana +# user = grafana +# password = + +[analytics] +reporting_enabled = false + +[security] +disable_gravatar = false +admin_user = admin +admin_password = admin +admin_email = admin@localhost +disable_initial_admin_creation = false + +[users] +allow_sign_up = false +allow_org_create = false +# login_hint = + +[auth] +disable_login_form = false +disable_signout_menu = false + +# [external_image_storage] +# provider = s3 + +# [external_image_storage.s3] +# endpoint = "" +# bucket = grafana.snapshot +# region = us-east-1 +# access_key = +# secret_key = + +# [auth.google] +# name = Google +# icon = google +# enabled = false +# allow_sign_up = true +# auto_login = false +# client_id = some_client_id +# client_secret = some_client_secret +# scopes = openid email profile +# auth_url = https://accounts.google.com/o/oauth2/v2/auth +# token_url = https://oauth2.googleapis.com/token +# api_url = https://openidconnect.googleapis.com/v1/userinfo +# signout_redirect_url = +# allowed_domains = +# validate_hd = +# hosted_domain = +# allowed_groups = +# role_attribute_path = +# role_attribute_strict = false +# org_mapping = +# allow_assign_grafana_admin = false +# skip_org_role_sync = false +# tls_skip_verify_insecure = false +# tls_client_cert = +# tls_client_key = +# tls_client_ca = +# use_pkce = true +# use_refresh_token = true + +# [plugins] +# plugin_catalog_hidden_plugins = +# disable_plugins = +# preinstall = +# preinstall_sync = +# preinstall_auto_update = + +# [feature_toggles] +# provisioning = true +# kubernetesDashboards = true ; use k8s from browser + +[date_formats] +default_week_start = monday +default_timezone = America/Toronto |
