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