fix
This commit is contained in:
2
authelia/Dockerfile
Normal file
2
authelia/Dockerfile
Normal file
@@ -0,0 +1,2 @@
|
||||
FROM authelia/authelia
|
||||
COPY configuration.yml /config/configuration.yml
|
42
authelia/configuration.yml
Normal file
42
authelia/configuration.yml
Normal file
@@ -0,0 +1,42 @@
|
||||
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:
|
||||
postgres:
|
||||
address: tcp://pg.chocomarsh.com:5432
|
||||
database: authelia
|
||||
schema: public
|
||||
username: postgres
|
||||
password: autheliapass # also override with env if preferred
|
Reference in New Issue
Block a user