---
# Authelia minimal configuration
theme: auto
server:
  endpoints:
    authz:
      forward-auth:
        implementation: 'ForwardAuth'

log:
  level: 'info'

identity_validation:
  reset_password:
    jwt_secret: 'a_very_important_secret'

authentication_backend:
  file:
    path: '/config/users.yml'

access_control:
  default_policy: deny
  rules:
    - domain: '*.storel.xyz'
      policy: one_factor

session:
  cookies:
    - domain: 'storel.xyz'
      authelia_url: 'https://a.storel.xyz'
      default_redirection_url: 'https://cloud.storel.xyz'
  expiration: '1h'
  inactivity: '5m'

regulation:
  max_retries: 3
  find_time: '2m'
  ban_time: '5m'

storage:
  encryption_key: 'a_very_important_secret'
  local:
    path: '/config/db.sqlite3'

notifier:
  filesystem:
    filename: '/config/notification.txt'

totp:
  issuer: 'storel.xyz'
