2
0
mirror of https://github.com/frappe/frappe_docker.git synced 2025-01-06 23:43:59 +00:00
frappe_docker/docs/add-custom-domain-using-traefik.md
2022-02-08 14:45:07 +03:00

1.0 KiB

Add following labels to frontend service

traefik.http.routers.custom-domain.rule: Host(`custom.localhost`)
# Comment the entrypoints label if traefik already has default entrypoint set
traefik.http.routers.custom-domain.entrypoints: web
traefik.http.middlewares.custom-domain.headers.customrequestheaders.Host: mysite.localhost
traefik.http.routers.custom-domain.middlewares: custom-domain
# Add following header only if TLS is needed in case of live server
traefik.http.routers.custom-domain.tls.certresolver: main-resolver

Example:

frontend:
  ...
  labels:
    ...
    traefik.http.routers.custom-domain.rule: Host(`custom.localhost`)
    traefik.http.routers.custom-domain.entrypoints: web
    traefik.http.middlewares.custom-domain.headers.customrequestheaders.Host: mysite.localhost
    traefik.http.routers.custom-domain.middlewares: custom-domain
    traefik.http.routers.custom-domain.tls.certresolver: main-resolver
    ...

This will add custom.localhost as custom domain for mysite.localhost