chore: fix typo in example env

This commit is contained in:
Stavros
2026-01-07 13:25:39 +02:00
parent f1e2b55cd1
commit 721f302c0b

View File

@@ -33,15 +33,15 @@ TINYAUTH_SERVER_TRUSTEDPROXIES=""
# Format: username:bcrypt_hash (use bcrypt to generate hash) # Format: username:bcrypt_hash (use bcrypt to generate hash)
TINYAUTH_AUTH_USERS="admin:$2a$10$example_bcrypt_hash_here" TINYAUTH_AUTH_USERS="admin:$2a$10$example_bcrypt_hash_here"
# Path to external users file (optional) # Path to external users file (optional)
TINYAUTH_USERSFILE="" TINYAUTH_AUTH_USERSFILE=""
# Enable secure cookies (requires HTTPS) # Enable secure cookies (requires HTTPS)
TINYAUTH_SECURECOOKIE="true" TINYAUTH_AUTH_SECURECOOKIE="true"
# Session expiry in seconds (7200 = 2 hours) # Session expiry in seconds (7200 = 2 hours)
TINYAUTH_SESSIONEXPIRY="7200" TINYAUTH_AUTH_SESSIONEXPIRY="7200"
# Login timeout in seconds (300 = 5 minutes) # Login timeout in seconds (300 = 5 minutes)
TINYAUTH_LOGINTIMEOUT="300" TINYAUTH_AUTH_LOGINTIMEOUT="300"
# Maximum login retries before lockout # Maximum login retries before lockout
TINYAUTH_LOGINMAXRETRIES="5" TINYAUTH_AUTH_LOGINMAXRETRIES="5"
# OAuth Configuration # OAuth Configuration