23 lines
935 B
YAML
23 lines
935 B
YAML
---
|
|
version: '3'
|
|
services:
|
|
httpbin:
|
|
image: citizenstig/httpbin
|
|
networks:
|
|
- authelianet
|
|
labels:
|
|
# Traefik 1.x
|
|
- 'traefik.frontend.rule=Host:public.example.com;Path:/headers'
|
|
- 'traefik.frontend.priority=120'
|
|
- 'traefik.frontend.auth.forward.address=https://authelia-backend:9091/api/authz/forward-auth'
|
|
- 'traefik.frontend.auth.forward.tls.insecureSkipVerify=true'
|
|
- 'traefik.frontend.auth.forward.trustForwardHeader=true'
|
|
- 'traefik.frontend.auth.forward.authResponseHeaders=Authorization,Proxy-Authorization,Remote-User,Remote-Groups,Remote-Email,Remote-Name'
|
|
# Traefik 2.x
|
|
- 'traefik.enable=true'
|
|
- 'traefik.http.routers.httpbin.rule=Host(`public.example.com`) && Path(`/headers`)'
|
|
- 'traefik.http.routers.httpbin.priority=150'
|
|
- 'traefik.http.routers.httpbin.tls=true'
|
|
- 'traefik.http.routers.httpbin.middlewares=authelia@docker'
|
|
...
|