Docs: Replace sample.ini secret_key example with placeholder (#115676)

This commit is contained in:
Anurag Ekkati 2026-01-27 04:01:19 -08:00 committed by GitHub
parent 3d3315800d
commit 6b34e16d5b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -367,8 +367,10 @@
# default admin email, created on startup
;admin_email = admin@localhost
# used for signing
;secret_key = SW2YcwTIb9zpOOhoPsMm
# IMPORTANT: Set this to a unique, random string in production.
# Used for signing. If you change it later you may need to re-encode secrets.
# Example: openssl rand -hex 32
;secret_key = CHANGE_ME_TO_A_RANDOM_SECRET
# current key provider used for envelope encryption, default to static value specified by secret_key
;encryption_provider = secretKey.v1
@ -2136,8 +2138,10 @@ default_datasource_uid =
;run_data_key_migration = true
[secrets_manager.encryption.secret_key.v1]
# Used to encrypt data keys
;secret_key = SW2YcwTIb9zpOOhoPsMm
# IMPORTANT: Set this to a unique, random string in production.
# Used to encrypt data keys.
# Example: openssl rand -hex 32
;secret_key = CHANGE_ME_TO_A_RANDOM_SECRET
################################## Frontend development configuration ###################################