docs: add RSA_PRIVATE_KEY_BASE64 to backoffice .env.example

This commit is contained in:
Tiago Yamamoto 2025-12-31 16:34:59 -03:00
parent c26ad578b9
commit 1249c9a499

View file

@ -34,6 +34,10 @@ JWT_SECRET=your-super-secret-jwt-key
# Token expiration (should match backend for consistency)
JWT_EXPIRATION=7d
# RSA Private Key (for Credentials Encryption)
# Must match the one used by the Backend to decrypt.
RSA_PRIVATE_KEY_BASE64=your-base64-encoded-private-key
# NOTE: PASSWORD_PEPPER is NOT needed here.
# The backoffice does not handle login - it only validates tokens via Bearer header or cookie.