2019-01-30 22:36:58 +00:00
|
|
|
###############################################################
|
|
|
|
# Authelia configuration #
|
|
|
|
###############################################################
|
|
|
|
|
|
|
|
port: 9091
|
|
|
|
|
2020-03-09 19:57:53 +00:00
|
|
|
log_level: debug
|
2019-01-30 22:36:58 +00:00
|
|
|
|
2019-04-24 21:52:08 +00:00
|
|
|
jwt_secret: unsecure_secret
|
|
|
|
|
2019-01-30 22:36:58 +00:00
|
|
|
totp:
|
|
|
|
issuer: authelia.com
|
|
|
|
|
|
|
|
authentication_backend:
|
|
|
|
ldap:
|
2019-11-02 14:32:58 +00:00
|
|
|
url: ldap://openldap
|
2019-01-30 22:36:58 +00:00
|
|
|
base_dn: dc=example,dc=com
|
2020-03-15 07:10:25 +00:00
|
|
|
username_attribute: uid
|
2019-01-30 22:36:58 +00:00
|
|
|
additional_users_dn: ou=users
|
2020-03-15 07:10:25 +00:00
|
|
|
users_filter: (objectClass=person)
|
2019-01-30 22:36:58 +00:00
|
|
|
additional_groups_dn: ou=groups
|
|
|
|
groups_filter: (&(member={dn})(objectclass=groupOfNames))
|
|
|
|
group_name_attribute: cn
|
|
|
|
mail_attribute: mail
|
|
|
|
user: cn=admin,dc=example,dc=com
|
|
|
|
password: password
|
|
|
|
|
|
|
|
access_control:
|
|
|
|
default_policy: deny
|
|
|
|
|
|
|
|
rules:
|
|
|
|
# Rules applied to everyone
|
|
|
|
- domain: public.example.com
|
2019-03-03 22:51:52 +00:00
|
|
|
policy: bypass
|
|
|
|
- domain: secure.example.com
|
2019-01-30 22:36:58 +00:00
|
|
|
policy: two_factor
|
2019-03-03 22:51:52 +00:00
|
|
|
- domain: singlefactor.example.com
|
2019-01-30 22:36:58 +00:00
|
|
|
policy: one_factor
|
|
|
|
|
2019-11-30 16:49:52 +00:00
|
|
|
# Rules applied to 'admins' group
|
2019-03-03 22:51:52 +00:00
|
|
|
- domain: mx2.mail.example.com
|
2019-11-30 16:49:52 +00:00
|
|
|
subject: "group:admins"
|
2019-01-30 22:36:58 +00:00
|
|
|
policy: deny
|
2019-03-03 22:51:52 +00:00
|
|
|
|
|
|
|
# Rules applied to user 'john'
|
2019-11-02 14:32:58 +00:00
|
|
|
- domain: "*.example.com"
|
|
|
|
subject: "user:john"
|
2019-03-03 22:51:52 +00:00
|
|
|
policy: two_factor
|
|
|
|
|
2019-11-02 14:32:58 +00:00
|
|
|
- domain: "*.example.com"
|
2019-11-30 16:49:52 +00:00
|
|
|
subject: "group:admins"
|
2019-01-30 22:36:58 +00:00
|
|
|
policy: two_factor
|
|
|
|
|
|
|
|
# Rules applied to 'dev' group
|
|
|
|
- domain: dev.example.com
|
|
|
|
resources:
|
2019-11-02 14:32:58 +00:00
|
|
|
- "^/groups/dev/.*$"
|
|
|
|
subject: "group:dev"
|
2019-01-30 22:36:58 +00:00
|
|
|
policy: two_factor
|
|
|
|
|
|
|
|
# Rules applied to user 'harry'
|
|
|
|
- domain: dev.example.com
|
|
|
|
resources:
|
2019-11-02 14:32:58 +00:00
|
|
|
- "^/users/harry/.*$"
|
|
|
|
subject: "user:harry"
|
2019-01-30 22:36:58 +00:00
|
|
|
policy: two_factor
|
|
|
|
|
|
|
|
# Rules applied to user 'bob'
|
2019-11-02 14:32:58 +00:00
|
|
|
- domain: "*.mail.example.com"
|
|
|
|
subject: "user:bob"
|
2019-01-30 22:36:58 +00:00
|
|
|
policy: two_factor
|
2019-11-02 14:32:58 +00:00
|
|
|
- domain: "dev.example.com"
|
2019-01-30 22:36:58 +00:00
|
|
|
resources:
|
2019-11-02 14:32:58 +00:00
|
|
|
- "^/users/bob/.*$"
|
|
|
|
subject: "user:bob"
|
2019-01-30 22:36:58 +00:00
|
|
|
policy: two_factor
|
|
|
|
|
|
|
|
session:
|
|
|
|
name: authelia_session
|
|
|
|
secret: unsecure_session_secret
|
2019-12-06 08:59:32 +00:00
|
|
|
expiration: 3600 # 1 hour
|
|
|
|
inactivity: 300 # 5 minutes
|
2019-01-30 22:36:58 +00:00
|
|
|
domain: example.com
|
|
|
|
redis:
|
2019-11-02 14:32:58 +00:00
|
|
|
host: redis
|
2019-01-30 22:36:58 +00:00
|
|
|
port: 6379
|
|
|
|
password: authelia
|
|
|
|
|
|
|
|
regulation:
|
|
|
|
max_retries: 3
|
2019-04-24 21:52:08 +00:00
|
|
|
find_time: 8
|
|
|
|
ban_time: 10
|
2019-01-30 22:36:58 +00:00
|
|
|
|
|
|
|
storage:
|
2019-11-16 19:50:58 +00:00
|
|
|
mysql:
|
2019-11-16 10:38:21 +00:00
|
|
|
host: mariadb
|
2019-11-30 16:49:52 +00:00
|
|
|
port: 3306
|
2019-01-30 22:36:58 +00:00
|
|
|
database: authelia
|
2019-11-16 10:38:21 +00:00
|
|
|
username: admin
|
|
|
|
password: password
|
2019-01-30 22:36:58 +00:00
|
|
|
|
|
|
|
notifier:
|
|
|
|
smtp:
|
2019-11-02 14:32:58 +00:00
|
|
|
host: smtp
|
2019-01-30 22:36:58 +00:00
|
|
|
port: 1025
|
|
|
|
sender: admin@example.com
|
2019-12-30 02:03:51 +00:00
|
|
|
disable_require_tls: true
|