blob: 4082750452792e9d7ad653b0fd63849397a1009c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
---
services:
authelia-frontend:
image: 'nginx:1.27.4-alpine'
volumes:
- './example/compose/authelia/resources/nginx.conf:/etc/nginx/nginx.conf'
labels:
traefik.enable: 'true'
traefik.http.routers.authelia_frontend.rule: 'Host(`login.example.com`) || Host(`login.example.com`) && PathPrefix(`${PathPrefix}/`)' # yamllint disable-line rule:line-length
traefik.http.routers.authelia_frontend.entrypoints: 'https'
traefik.http.routers.authelia_frontend.tls: 'true'
traefik.http.services.authelia_frontend.loadbalancer.server.port: '3000'
networks:
authelianet: {}
...
|