18 lines
483 B
YAML
18 lines
483 B
YAML
networks:
|
|
proxy:
|
|
external: true
|
|
name: ${APP_PROXY_NETWORK}
|
|
|
|
services:
|
|
|
|
lum:
|
|
|
|
labels:
|
|
traefik.enable: "true"
|
|
traefik.http.routers.lum.entrypoints: front-http,front-https
|
|
traefik.http.routers.lum.rule: Host(`lum.$APP_TOP_DOMAIN`)
|
|
traefik.http.routers.lum.service: lum
|
|
traefik.http.routers.lum.tls: "true"
|
|
traefik.http.routers.lum.tls.certresolver: $TRAEFIK_CERTRESOLV
|
|
traefik.http.services.lum.loadbalancer.server.port: '80'
|