8 lines
521 B
Plaintext
8 lines
521 B
Plaintext
# Session Secret Key (must be at least 64 bytes long when decoded from base64)
|
|
# Generate a strong random key for this, e.g., using: openssl rand -base64 64
|
|
# This should produce an 88-character base64 string, which decodes to 64 raw bytes.
|
|
# This key is used by src/utils/mod.rs for Actix session management.
|
|
# If not set or invalid, a temporary key will be generated on each app start,
|
|
# and user sessions will not persist across restarts.
|
|
# Make sure that the secret key is on one line.
|
|
SECRET_KEY=your_secret_key_here |