traefik/docs/content/providers/file.md

289 lines
7.7 KiB
Markdown
Raw Normal View History

2019-03-14 15:46:05 +00:00
# Traefik & File
Good Old Configuration File
2021-02-11 18:04:03 +00:00
{: .subtitle }
The file provider lets you define the [dynamic configuration](./overview.md) in a TOML or YAML file.
It supports providing configuration through a [single configuration file](#filename) or [multiple separate files](#directory).
2019-09-23 12:32:04 +00:00
!!! info
2021-02-11 18:04:03 +00:00
The file provider is the default format used throughout the documentation to show samples of the configuration for many features.
2019-03-14 15:46:05 +00:00
!!! tip
2021-02-11 18:04:03 +00:00
The file provider can be a good solution for reusing common elements from other providers (e.g. declaring whitelist middlewares, basic authentication, ...)
2019-03-14 15:46:05 +00:00
## Configuration Examples
2019-03-14 15:46:05 +00:00
??? example "Declaring Routers, Middlewares & Services"
Enabling the file provider:
2021-02-11 18:04:03 +00:00
```toml tab="File (TOML)"
2019-03-21 14:34:04 +00:00
[providers.file]
directory = "/path/to/dynamic/conf"
```
2021-02-11 18:04:03 +00:00
```yaml tab="File (YAML)"
providers:
file:
directory: "/path/to/dynamic/conf"
```
2021-02-11 18:04:03 +00:00
```bash tab="CLI"
--providers.file.directory=/path/to/dynamic/conf
```
2021-02-11 18:04:03 +00:00
Declaring Routers, Middlewares & Services:
2021-02-11 18:04:03 +00:00
```toml tab="TOML"
2019-03-14 15:46:05 +00:00
[http]
# Add the router
[http.routers]
[http.routers.router0]
entryPoints = ["web"]
2019-03-14 15:46:05 +00:00
middlewares = ["my-basic-auth"]
service = "service-foo"
2019-09-03 16:02:05 +00:00
rule = "Path(`/foo`)"
2021-02-11 18:04:03 +00:00
# Add the middleware
2021-02-11 18:04:03 +00:00
[http.middlewares]
[http.middlewares.my-basic-auth.basicAuth]
users = ["test:$apr1$H6uskkkW$IgXLP6ewTrSuBkTrqE8wj/",
"test2:$apr1$d9hr9HBB$4HxwgUir3HP4EsggP/QNo0"]
usersFile = "etc/traefik/.htpasswd"
2021-02-11 18:04:03 +00:00
# Add the service
[http.services]
[http.services.service-foo]
[http.services.service-foo.loadBalancer]
[[http.services.service-foo.loadBalancer.servers]]
url = "http://foo/"
[[http.services.service-foo.loadBalancer.servers]]
url = "http://bar/"
2019-03-14 15:46:05 +00:00
```
2021-02-11 18:04:03 +00:00
```yaml tab="YAML"
http:
2019-07-01 09:30:05 +00:00
# Add the router
routers:
router0:
2019-07-01 09:30:05 +00:00
entryPoints:
- web
middlewares:
- my-basic-auth
service: service-foo
2019-09-03 16:02:05 +00:00
rule: Path(`/foo`)
2021-02-11 18:04:03 +00:00
2019-07-01 09:30:05 +00:00
# Add the middleware
middlewares:
my-basic-auth:
basicAuth:
users:
- test:$apr1$H6uskkkW$IgXLP6ewTrSuBkTrqE8wj/
- test2:$apr1$d9hr9HBB$4HxwgUir3HP4EsggP/QNo0
2019-07-01 09:30:05 +00:00
usersFile: etc/traefik/.htpasswd
2021-02-11 18:04:03 +00:00
2019-07-01 09:30:05 +00:00
# Add the service
services:
service-foo:
2019-07-01 09:30:05 +00:00
loadBalancer:
servers:
- url: http://foo/
- url: http://bar/
2019-07-01 09:30:05 +00:00
passHostHeader: false
```
2019-09-23 12:32:04 +00:00
## Provider Configuration
2021-02-11 18:04:03 +00:00
For an overview of all the options that can be set with the file provider, see the [dynamic configuration](../reference/dynamic-configuration/file.md) and [static configuration](../reference/static-configuration/overview.md) references.
2019-04-24 15:44:04 +00:00
!!! warning "Limitations"
With the file provider, Traefik listens for file system notifications to update the dynamic configuration.
2021-02-11 18:04:03 +00:00
If you use a mounted/bound file system in your orchestrator (like docker or kubernetes), the way the files are linked may be a source of errors.
If the link between the file systems is broken, when a source file/directory is changed/renamed, nothing will be reported to the linked file/directory, so the file system notifications will be neither triggered nor caught.
2021-02-11 18:04:03 +00:00
For example, in Docker, if the host file is renamed, the link to the mounted file is broken and the container's file is no longer updated.
To avoid this kind of issue, it is recommended to:
* set the Traefik [**directory**](#directory) configuration with the parent directory
* mount/bind the parent directory
2021-02-11 18:04:03 +00:00
As it is very difficult to listen to all file system notifications, Traefik uses [fsnotify](https://github.com/fsnotify/fsnotify).
If using a directory with a mounted directory does not fix your issue, please check your file system compatibility with fsnotify.
2021-02-11 18:04:03 +00:00
2019-09-23 12:32:04 +00:00
### `filename`
Defines the path to the configuration file.
!!! warning ""
2021-02-11 18:04:03 +00:00
The `filename` and `directory` options are mutually exclusive.
It is recommended to use `directory`.
2019-03-14 15:46:05 +00:00
```toml tab="File (TOML)"
2019-03-14 15:46:05 +00:00
[providers]
[providers.file]
filename = "/path/to/config/dynamic_conf.toml"
2019-03-14 15:46:05 +00:00
```
```yaml tab="File (YAML)"
providers:
file:
filename: /path/to/config/dynamic_conf.yml
```
```bash tab="CLI"
--providers.file.filename=/path/to/config/dynamic_conf.toml
```
2019-04-24 15:44:04 +00:00
### `directory`
Defines the path to the directory that contains the configuration files.
!!! warning ""
2021-02-11 18:04:03 +00:00
The `filename` and `directory` options are mutually exclusive.
It is recommended to use `directory`.
2019-03-14 15:46:05 +00:00
```toml tab="File (TOML)"
2019-03-14 15:46:05 +00:00
[providers]
[providers.file]
directory = "/path/to/config"
```
```yaml tab="File (YAML)"
providers:
file:
directory: /path/to/config
```
```bash tab="CLI"
--providers.file.directory=/path/to/config
```
2019-04-24 15:44:04 +00:00
### `watch`
2021-02-11 18:04:03 +00:00
Set the `watch` option to `true` to allow Traefik to automatically watch for file changes.
2019-03-14 15:46:05 +00:00
It works with both the `filename` and the `directory` options.
```toml tab="File (TOML)"
2019-03-14 15:46:05 +00:00
[providers]
[providers.file]
directory = "/path/to/dynamic/conf"
2019-03-14 15:46:05 +00:00
watch = true
```
```yaml tab="File (YAML)"
providers:
file:
directory: /path/to/dynamic/conf
watch: true
```
```bash tab="CLI"
--providers.file.directory=/my/path/to/dynamic/conf
--providers.file.watch=true
```
### Go Templating
2019-03-14 15:46:05 +00:00
!!! warning
2021-02-11 18:04:03 +00:00
Go Templating only works with dedicated dynamic configuration files.
2019-09-23 12:32:04 +00:00
Templating does not work in the Traefik main static configuration file.
2019-03-14 15:46:05 +00:00
2021-02-11 18:04:03 +00:00
Traefik supports using Go templating to automatically generate repetitive sections of configuration files.
These sections must be a valid [Go template](https://golang.org/pkg/text/template/), and can use
[sprig template functions](http://masterminds.github.io/sprig/).
2021-02-11 18:04:03 +00:00
To illustrate, it is possible to easily define multiple routers, services, and TLS certificates as described in the following examples:
2019-03-14 15:46:05 +00:00
??? example "Configuring Using Templating"
2021-02-11 18:04:03 +00:00
```toml tab="TOML"
2019-03-14 15:46:05 +00:00
# template-rules.toml
[http]
2021-02-11 18:04:03 +00:00
2019-03-14 15:46:05 +00:00
[http.routers]
{{ range $i, $e := until 100 }}
[http.routers.router{{ $e }}-{{ env "MY_ENV_VAR" }}]
2019-03-14 15:46:05 +00:00
# ...
2021-02-11 18:04:03 +00:00
{{ end }}
2019-07-01 09:30:05 +00:00
[http.services]
2019-03-14 15:46:05 +00:00
{{ range $i, $e := until 100 }}
[http.services.service{{ $e }}]
# ...
2021-02-11 18:04:03 +00:00
{{ end }}
2019-03-14 15:46:05 +00:00
[tcp]
2021-02-11 18:04:03 +00:00
2019-03-14 15:46:05 +00:00
[tcp.routers]
{{ range $i, $e := until 100 }}
[tcp.routers.router{{ $e }}]
# ...
2021-02-11 18:04:03 +00:00
{{ end }}
2019-07-01 09:30:05 +00:00
[tcp.services]
2019-03-14 15:46:05 +00:00
{{ range $i, $e := until 100 }}
[http.services.service{{ $e }}]
# ...
2021-02-11 18:04:03 +00:00
{{ end }}
2019-03-14 15:46:05 +00:00
{{ range $i, $e := until 10 }}
[[tls.certificates]]
2019-07-01 09:30:05 +00:00
certFile = "/etc/traefik/cert-{{ $e }}.pem"
keyFile = "/etc/traefik/cert-{{ $e }}.key"
stores = ["my-store-foo-{{ $e }}", "my-store-bar-{{ $e }}"]
2019-03-14 15:46:05 +00:00
{{ end }}
2021-02-11 18:04:03 +00:00
[tls.config]
2019-03-14 15:46:05 +00:00
{{ range $i, $e := until 10 }}
[tls.config.TLS{{ $e }}]
2019-03-14 15:46:05 +00:00
# ...
{{ end }}
```
2021-02-11 18:04:03 +00:00
```yaml tab="YAML"
http:
routers:
{{range $i, $e := until 100 }}
router{{ $e }}-{{ env "MY_ENV_VAR" }}:
# ...
{{end}}
2021-02-11 18:04:03 +00:00
services:
{{range $i, $e := until 100 }}
application{{ $e }}:
# ...
{{end}}
2021-02-11 18:04:03 +00:00
tcp:
routers:
{{range $i, $e := until 100 }}
router{{ $e }}:
# ...
{{end}}
2021-02-11 18:04:03 +00:00
services:
{{range $i, $e := until 100 }}
service{{ $e }}:
# ...
{{end}}
2021-02-11 18:04:03 +00:00
tls:
certificates:
{{ range $i, $e := until 10 }}
2019-07-01 09:30:05 +00:00
- certFile: "/etc/traefik/cert-{{ $e }}.pem"
keyFile: "/etc/traefik/cert-{{ $e }}.key"
store:
- "my-store-foo-{{ $e }}"
- "my-store-bar-{{ $e }}"
{{end}}
```