diff --git a/docs/configuration/backends/docker.md b/docs/configuration/backends/docker.md index 58ae2fe21..e167f76c8 100644 --- a/docs/configuration/backends/docker.md +++ b/docs/configuration/backends/docker.md @@ -196,6 +196,7 @@ Labels can be used on containers to override default behavior. | Label | Description | |------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | `traefik.docker.network` | Set the docker network to use for connections to this container. [1] | +| `traefik.domain` | Default domain used for frontend rules. | | `traefik.enable=false` | Disable this container in Træfik | | `traefik.port=80` | Register this port. Useful when the container exposes multiples ports. | | `traefik.protocol=https` | Override the default `http` protocol | @@ -283,6 +284,7 @@ Segment labels override the default behavior. | Label | Description | |---------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------| +| `traefik..domain` | Default domain used for frontend rules. | | `traefik..port=PORT` | Overrides `traefik.port`. If several ports need to be exposed, the segment labels could be used. | | `traefik..protocol` | Overrides `traefik.protocol`. | | `traefik..weight` | Assign this segment weight. Overrides `traefik.weight`. | diff --git a/docs/configuration/backends/ecs.md b/docs/configuration/backends/ecs.md index 890f3df25..729112c11 100644 --- a/docs/configuration/backends/ecs.md +++ b/docs/configuration/backends/ecs.md @@ -33,6 +33,7 @@ clusters = ["default"] watch = true # Default domain used. +# Can be overridden by setting the "traefik.domain" label. # # Optional # Default: "" @@ -135,6 +136,7 @@ Labels can be used on task containers to override default behaviour: | Label | Description | |------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| `traefik.domain` | Default domain used for frontend rules. | | `traefik.enable=false` | Disable this container in Træfik | | `traefik.port=80` | Override the default `port` value. Overrides `NetworkBindings` from Docker Container | | `traefik.protocol=https` | Override the default `http` protocol | diff --git a/docs/configuration/backends/marathon.md b/docs/configuration/backends/marathon.md index 4d46dafe7..c8e47f8fe 100644 --- a/docs/configuration/backends/marathon.md +++ b/docs/configuration/backends/marathon.md @@ -171,6 +171,7 @@ The following labels can be defined on Marathon applications. They adjust the be | Label | Description | |------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| `traefik.domain` | Default domain used for frontend rules. | | `traefik.enable=false` | Disable this container in Træfik | | `traefik.port=80` | Register this port. Useful when the container exposes multiples ports. | | `traefik.portIndex=1` | Register port by index in the application's ports array. Useful when the application exposes multiple ports. | @@ -254,6 +255,7 @@ Segment labels override the default behavior. | Label | Description | |---------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------| +| `traefik..domain` | Default domain used for frontend rules. | | `traefik..portIndex=1` | Create a service binding with frontend/backend using this port index. Overrides `traefik.portIndex`. | | `traefik..port=PORT` | Overrides `traefik.port`. If several ports need to be exposed, the service labels could be used. | | `traefik..protocol=http` | Overrides `traefik.protocol`. | diff --git a/docs/configuration/backends/mesos.md b/docs/configuration/backends/mesos.md index 063aaaacd..d9d454499 100644 --- a/docs/configuration/backends/mesos.md +++ b/docs/configuration/backends/mesos.md @@ -108,6 +108,7 @@ The following labels can be defined on Mesos tasks. They adjust the behavior for | Label | Description | |------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| `traefik.domain` | Default domain used for frontend rules. | | `traefik.enable=false` | Disable this container in Træfik | | `traefik.port=80` | Register this port. Useful when the container exposes multiples ports. | | `traefik.portIndex=1` | Register port by index in the application's ports array. Useful when the application exposes multiple ports. | diff --git a/docs/configuration/backends/rancher.md b/docs/configuration/backends/rancher.md index 2382bcae0..6c71de718 100644 --- a/docs/configuration/backends/rancher.md +++ b/docs/configuration/backends/rancher.md @@ -140,6 +140,7 @@ Labels can be used on task containers to override default behavior: | Label | Description | |------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| `traefik.domain` | Default domain used for frontend rules. | | `traefik.enable=false` | Disable this container in Træfik | | `traefik.port=80` | Register this port. Useful when the container exposes multiples ports. | | `traefik.protocol=https` | Override the default `http` protocol | @@ -221,6 +222,7 @@ Segment labels override the default behavior. | Label | Description | |---------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------| +| `traefik..domain` | Default domain used for frontend rules. | | `traefik..port=PORT` | Overrides `traefik.port`. If several ports need to be exposed, the segment labels could be used. | | `traefik..protocol` | Overrides `traefik.protocol`. | | `traefik..weight` | Assign this segment weight. Overrides `traefik.weight`. |