2020-02-05 04:18:02 +07:00
|
|
|
###############################################################
|
|
|
|
# Authelia minimal configuration #
|
|
|
|
###############################################################
|
|
|
|
|
|
|
|
port: 9091
|
2020-04-14 06:57:28 +07:00
|
|
|
tls_cert: /var/lib/authelia/ssl/cert.pem
|
|
|
|
tls_key: /var/lib/authelia/ssl/key.pem
|
2020-02-05 04:18:02 +07:00
|
|
|
|
2020-03-10 02:57:53 +07:00
|
|
|
log_level: debug
|
2020-02-05 04:18:02 +07:00
|
|
|
|
|
|
|
default_redirection_url: https://home.example.com:8080/
|
|
|
|
|
|
|
|
jwt_secret: unsecure_secret
|
|
|
|
|
|
|
|
authentication_backend:
|
|
|
|
file:
|
|
|
|
path: /var/lib/authelia/users.yml
|
|
|
|
|
|
|
|
session:
|
|
|
|
secret: unsecure_session_secret
|
|
|
|
domain: example.com
|
|
|
|
expiration: 3600 # 1 hour
|
|
|
|
inactivity: 300 # 5 minutes
|
2020-04-04 06:11:33 +07:00
|
|
|
remember_me_duration: 1y
|
2020-02-05 04:18:02 +07:00
|
|
|
|
|
|
|
storage:
|
|
|
|
local:
|
|
|
|
path: /var/lib/authelia/db.sqlite
|
|
|
|
|
|
|
|
access_control:
|
2020-03-06 07:31:09 +07:00
|
|
|
default_policy: deny
|
|
|
|
rules:
|
|
|
|
- domain: singlefactor.example.com
|
|
|
|
policy: one_factor
|
|
|
|
- domain: public.example.com
|
|
|
|
policy: bypass
|
|
|
|
- domain: home.example.com
|
|
|
|
policy: bypass
|
|
|
|
- domain: unsafe.local
|
|
|
|
policy: bypass
|
2020-02-05 04:18:02 +07:00
|
|
|
|
|
|
|
notifier:
|
[FEATURE] Notifier Startup Checks (#889)
* implement SMTP notifier startup check
* check dial, starttls, auth, mail from, rcpt to, reset, and quit
* log the error on failure
* implement mock
* misc optimizations, adjustments, and refactoring
* implement validate_skip config option
* fix comments to end with period
* fix suites that used smtp notifier without a smtp container
* add docs
* add file notifier startup check
* move file mode into const.go
* disable gosec linting on insecureskipverify since it's intended, warned, and discouraged
* minor PR commentary adjustment
* apply suggestions from code review
Co-Authored-By: Amir Zarrinkafsh <nightah@me.com>
2020-04-21 11:59:38 +07:00
|
|
|
filesystem:
|
|
|
|
filename: /tmp/notifier.html
|