Guest User

traefikv3_authelia_config_v438+

a guest
Jun 15th, 2025
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.04 KB | Fixit | 0 0
  1. ---
  2. ###############################################################
  3. #                   Authelia configuration                    #
  4. #                   fuer Version v4.38+                       #
  5. ###############################################################
  6.  
  7. identity_validation:
  8.   reset_password:
  9.     jwt_secret: #jwt_secret goes here
  10.  
  11. server:
  12.   address: tcp://0.0.0.0:9091
  13.  
  14. log:
  15.   level: debug
  16.  
  17. totp:
  18.   issuer: authelia
  19.   period: 30
  20.   skew: 1
  21.  
  22. authentication_backend:
  23.   file:
  24.     path: /config/users_database.yml
  25.     password:
  26.       algorithm: argon2id
  27.       iterations: 1
  28.       salt_length: 16
  29.       parallelism: 8
  30.       memory: 128
  31.  
  32. access_control:
  33.   default_policy: deny
  34.   rules:
  35.     - domain:
  36.        - "oeffentlich.euredomain.de"
  37.         - "authelia.euredomain.de"
  38.       policy: bypass
  39.     - domain:
  40.        - "sicher.euredomain.de"
  41.       policy: one_factor
  42.     - domain:
  43.        - "supersicher.euredomain.de"
  44.        policy: two_factor
  45.  
  46. session:
  47.   name: authelia_session
  48.   secret: #authelia_session secrete goes here
  49.   expiration: 1h
  50.   inactivity: 5m
  51.   remember_me: 1w
  52.   cookies:
  53.     - domain: euredomain.de
  54.       authelia_url: https://authelia.euredomain.de
  55.       default_redirection_url: https://authelia.euredomain.de/redirect
  56.       same_site: lax  # oder "strict"
  57.  
  58. regulation:
  59.   max_retries: 3
  60.   find_time: 2m
  61.   ban_time: 5m
  62.  
  63. storage:
  64.   local:
  65.     path: /config/db.sqlite3
  66.   encryption_key: #encryption_key goes here
  67.  
  68. notifier:
  69.   smtp:
  70.     address: submissions://smtp.euredomain.de:587
  71.     username: [email protected]
  72.     password: sicher123!
  73.     sender: [email protected]
  74.     disable_require_tls: true
  75.   #filesystem:
  76.     #filename: /config/notification.txt
  77.  
  78. identity_providers:
  79.   oidc:
  80.     jwks:
  81.       - key_id: euredomain
  82.         algorithm: RS256
  83.         use: sig
  84.         key: |
  85.          -----BEGIN PRIVATE KEY-----
  86.          
  87.           -----END PRIVATE KEY-----
  88.         certificate_chain: |
  89.          -----BEGIN CERTIFICATE-----
  90.          
  91.           -----END CERTIFICATE-----
Advertisement
Add Comment
Please, Sign In to add comment