From 89ffdf7e22b708260ab8f8c5cea539cc715d4f83 Mon Sep 17 00:00:00 2001 From: Stavros Date: Tue, 23 Jun 2026 13:39:31 +0300 Subject: [PATCH] chore: update example env --- .env.example | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.env.example b/.env.example index 100b0e9d..da0a0831 100644 --- a/.env.example +++ b/.env.example @@ -32,8 +32,6 @@ TINYAUTH_SERVER_PORT=3000 TINYAUTH_SERVER_ADDRESS="0.0.0.0" # The path to the Unix socket. TINYAUTH_SERVER_SOCKETPATH= -# Enable listening on both TCP and Unix socket at the same time. -TINYAUTH_SERVER_CONCURRENTLISTENERSENABLED=false # auth config @@ -99,6 +97,8 @@ TINYAUTH_AUTH_SESSIONMAXLIFETIME=0 TINYAUTH_AUTH_LOGINTIMEOUT=300 # Maximum login retries. TINYAUTH_AUTH_LOGINMAXRETRIES=3 +# Enable lockdown mode after maximum login retries. Lockdown mode limit is calculated automatically. +TINYAUTH_AUTH_LOCKDOWNENABLED=true # Comma-separated list of trusted proxy addresses. TINYAUTH_AUTH_TRUSTEDPROXIES= # ACL policy for allow-by-default or deny-by-default, available options are allow and deny, default is allow. @@ -206,6 +206,8 @@ TINYAUTH_LDAP_ADDRESS= TINYAUTH_LDAP_BINDDN= # Bind password for LDAP authentication. TINYAUTH_LDAP_BINDPASSWORD= +# Path to the Bind password. +TINYAUTH_LDAP_BINDPASSWORDFILE= # Base DN for LDAP searches. TINYAUTH_LDAP_BASEDN= # Allow insecure LDAP connections. @@ -252,3 +254,7 @@ TINYAUTH_TAILSCALE_HOSTNAME= TINYAUTH_TAILSCALE_AUTHKEY= # Use ephemeral Tailscale node. TINYAUTH_TAILSCALE_EPHEMERAL=false +# Enable Tailscale Funnel. +TINYAUTH_TAILSCALE_FUNNEL=false +# Listen on the Tailscale address instead of standard address. +TINYAUTH_TAILSCALE_LISTEN=false