dd
This commit is contained in:
parent
638d5e2d90
commit
c05abfcc30
2 changed files with 19 additions and 9 deletions
|
@ -1,9 +1,12 @@
|
|||
---
|
||||
server.address: "0.0.0.0:9091"
|
||||
|
||||
log:
|
||||
level: debug
|
||||
|
||||
jwt_secret: c50498e29383564cd50bdeda9b74a3bf
|
||||
identity_validation:
|
||||
reset_password:
|
||||
jwt_secret: c50498e29383564cd50bdeda9b74a3bf
|
||||
|
||||
totp:
|
||||
issuer: totp.mgrote.net
|
||||
|
@ -40,11 +43,10 @@ storage:
|
|||
path: /data/db.sqlite3
|
||||
# db auf mariadb ändern
|
||||
|
||||
#notifier:
|
||||
# smtp:
|
||||
# username: apikey
|
||||
# password: secret
|
||||
# host: smtp.sendgrid.net
|
||||
# port: 587
|
||||
# sender: no-reply@mydomain.com
|
||||
#configuration
|
||||
notifier:
|
||||
smtp:
|
||||
username: ""
|
||||
password: ""
|
||||
host: postfix
|
||||
port: 25
|
||||
sender: no-reply-authelia@mgrote.net
|
||||
|
|
|
@ -48,6 +48,10 @@ services:
|
|||
traefik.http.middlewares.authelia.forwardauth.authResponseHeaders: Remote-User,Remote-Groups,Remote-Name,Remote-Email'
|
||||
depends_on:
|
||||
- authelia-redis
|
||||
networks:
|
||||
- traefik
|
||||
- postfix
|
||||
- authelia
|
||||
|
||||
authelia-redis: # version!!!!
|
||||
image: redis:7
|
||||
|
@ -56,11 +60,15 @@ services:
|
|||
pull_policy: missing
|
||||
environment:
|
||||
TZ: Europe/Berlin
|
||||
networks:
|
||||
- authelia
|
||||
|
||||
######## Networks ########
|
||||
networks:
|
||||
traefik:
|
||||
external: true
|
||||
postfix:
|
||||
external: true
|
||||
######## Volumes ########
|
||||
volumes:
|
||||
acme_data:
|
||||
|
|
Loading…
Reference in a new issue