From 6933b969dd2d80e64e9ea27c42e733491ee45bbb Mon Sep 17 00:00:00 2001 From: john Date: Thu, 18 Dec 2025 21:53:34 +0000 Subject: [PATCH] Delete authelia/authelia/configuration.yml --- authelia/authelia/configuration.yml | 76 ----------------------------- 1 file changed, 76 deletions(-) delete mode 100644 authelia/authelia/configuration.yml diff --git a/authelia/authelia/configuration.yml b/authelia/authelia/configuration.yml deleted file mode 100644 index d9a3670..0000000 --- a/authelia/authelia/configuration.yml +++ /dev/null @@ -1,76 +0,0 @@ ---- -############################################################### -# Authelia configuration # -############################################################### - -server: - address: 'tcp://:9091' - -log: - level: 'debug' - -totp: - issuer: 'authelia.com' - -identity_validation: - reset_password: - jwt_secret: '5MTF55m2tytLkXbSs95xXmVkmKRSxuvFk4pRhzHy' - -# duo_api: -# hostname: api-123456789.example.com -# integration_key: ABCDEF -# # This secret can also be set using the env variables AUTHELIA_DUO_API_SECRET_KEY_FILE -# secret_key: 1234567890abcdefghifjkl - -authentication_backend: - file: - path: '/config/users_database.yml' - -access_control: - default_policy: 'deny' - rules: - # Rules applied to everyone - - domain: 'public.example.com' - policy: 'bypass' - - domain: 'nextfamhistweb.johnsnexus.click' - policy: 'one_factor' - - domain: 'secure.example.com' - policy: 'two_factor' - -session: - # This secret can also be set using the env variables AUTHELIA_SESSION_SECRET_FILE - secret: '5MTF55m2tytLkXbSs95xXmVkmKRSxuvFk4pRhzHy' - - cookies: - - name: 'authelia_session' - domain: 'johnsnexus.com' # Should match whatever your root protected domain is - authelia_url: 'https://authelia.johnsnexus.com' - expiration: '1 hour' - inactivity: '5 minutes' - - redis: - host: 'redis' - port: 6379 - # This secret can also be set using the env variables AUTHELIA_SESSION_REDIS_PASSWORD_FILE - password: authelia - -regulation: - max_retries: 3 - find_time: '2 minutes' - ban_time: '5 minutes' - -storage: - encryption_key: 'l8bUkiQtOITmiHQooi7lR3UCCKIjCGsteLj56WXWuwvBU1ybXBb98txdY2SSr4pw' - local: - path: '/config/db.sqlite3' - -notifier: - smtp: - username: 'john.study55@gmail.com' - # This secret can also be set using the env variables AUTHELIA_NOTIFIER_SMTP_PASSWORD_FILE - password: 'jmxn lvnv wdtx sxvf' - address: 'submission://smtp.gmail.com:587' - sender: 'john.study55@gmail.com' -# subject: "[Authelia] {title}" - -...