44 lines
973 B
YAML
44 lines
973 B
YAML
theme: dark
|
|
|
|
jwt_secret: secret-jwt-will-be-overridden-by-env
|
|
default_redirection_url: https://auth.chocomarsh.com
|
|
|
|
server:
|
|
host: 0.0.0.0
|
|
port: 9091
|
|
|
|
log:
|
|
level: info
|
|
|
|
authentication_backend:
|
|
file:
|
|
users:
|
|
emmatveev:
|
|
password: "$argon2id$v=19$m=65536,t=1,p=4$CixMXaAilVof3yk1rtghwg$V/kcl1HNDWeybrV3SrVjjdI00D1lFtuvLldkwAklSOE"
|
|
displayname: "Egor Matveev"
|
|
email: emmtvv@gmail.com
|
|
|
|
access_control:
|
|
default_policy: one_factor
|
|
rules:
|
|
- domain: "*.chocomarsh.com"
|
|
policy: one_factor
|
|
|
|
session:
|
|
name: authelia_session
|
|
expiration: 1h
|
|
inactivity: 5m
|
|
remember_me_duration: 1w
|
|
cookies:
|
|
- domain: chocomarsh.com
|
|
authelia_url: https://auth.chocomarsh.com
|
|
|
|
storage:
|
|
encryption_key: "a_very_long_secret_32_characters_minimum"
|
|
postgres:
|
|
address: tcp://pg.chocomarsh.com:5432
|
|
database: authelia
|
|
schema: public
|
|
username: postgres
|
|
password: autheliapass # also override with env if preferred
|