--- ############################################################### # Authelia minimal configuration # ############################################################### server: port: 9091 tls: certificate: /config/ssl/cert.pem key: /config/ssl/key.pem log: level: debug jwt_secret: unsecure_secret authentication_backend: file: path: /config/users.yml session: secret: unsecure_session_secret domain: example.com expiration: 3600 # 1 hour inactivity: 300 # 5 minutes remember_me_duration: 1y storage: encryption_key: a_not_so_secure_encryption_key local: path: /tmp/db.sqlite access_control: default_policy: bypass rules: - domain: "public.example.com" policy: bypass - domain: "admin.example.com" policy: two_factor - domain: "secure.example.com" policy: two_factor - domain: "singlefactor.example.com" policy: one_factor notifier: filesystem: filename: /tmp/notification.txt ...