2019-02-26 13:50:07 +00:00
# Overview
What's Happening to the Requests?
{: .subtitle }
2019-05-17 11:32:05 +00:00
Let's zoom in on Traefik's architecture and talk about the components that enable the routes to be created.
2019-02-26 13:50:07 +00:00
2019-03-14 08:30:04 +00:00
First, when you start Traefik, you define [entrypoints ](../entrypoints ) (in their most basic forms, they are port numbers).
Then, connected to these entrypoints, [routers ](../routers ) analyze the incoming requests to see if they match a set of [rules ](../routers#rule ).
If they do, the router might transform the request using pieces of [middleware ](../middlewares/overview.md ) before forwarding them to your [services ](./services/index.md ).
2019-02-26 13:50:07 +00:00
![Architecture ](../assets/img/architecture-overview.png )
## Clear Responsibilities
2019-03-14 08:30:04 +00:00
- [_Providers_ ](../providers/overview.md ) discover the services that live on your infrastructure (their IP, health, ...)
2019-05-06 15:44:04 +00:00
- [_Entrypoints_ ](./entrypoints.md ) listen for incoming traffic (ports, ...)
2019-03-14 08:30:04 +00:00
- [_Routers_ ](./routers/index.md ) analyse the requests (host, path, headers, SSL, ...)
- [_Services_ ](./services/index.md ) forward the request to your services (load balancing, ...)
2019-02-26 13:50:07 +00:00
- [_Middlewares_ ](../middlewares/overview.md ) may update the request or make decisions based on the request (authentication, rate limiting, headers, ...)
2019-03-14 08:30:04 +00:00
2019-02-26 13:50:07 +00:00
## Example with a File Provider
Below is an example of a full configuration file for the [file provider ](../providers/file.md ) that forwards `http://domain/whoami/` requests to a service reachable on `http://private/whoami-service/` .
2019-03-14 08:30:04 +00:00
In the process, Traefik will make sure that the user is authenticated (using the [BasicAuth middleware ](../middlewares/basicauth.md )).
2019-02-26 13:50:07 +00:00
2019-06-26 16:18:04 +00:00
Static configuration:
2019-07-02 15:36:04 +00:00
```toml tab="File (TOML)"
2019-04-15 09:14:05 +00:00
[entryPoints]
2019-06-26 16:18:04 +00:00
[entryPoints.web]
# Listen on port 8081 for incoming requests
address = ":8081"
2019-02-26 13:50:07 +00:00
2019-03-14 08:30:04 +00:00
[providers]
2019-12-09 10:48:05 +00:00
# Enable the file provider to define routers / middlewares / services in file
2019-06-26 16:18:04 +00:00
[providers.file]
2019-12-09 10:48:05 +00:00
directory = "/path/to/dynamic/conf"
2019-06-26 16:18:04 +00:00
```
2019-07-02 15:36:04 +00:00
```yaml tab="File (YAML)"
2019-07-01 09:30:05 +00:00
entryPoints:
2019-06-26 16:18:04 +00:00
web:
# Listen on port 8081 for incoming requests
address: :8081
2019-07-01 09:30:05 +00:00
2019-06-26 16:18:04 +00:00
providers:
2019-12-09 10:48:05 +00:00
# Enable the file provider to define routers / middlewares / services in file
2019-07-15 08:22:03 +00:00
file:
2019-12-09 10:48:05 +00:00
directory: /path/to/dynamic/conf
2019-06-26 16:18:04 +00:00
```
2019-07-02 15:36:04 +00:00
```bash tab="CLI"
# Listen on port 8081 for incoming requests
--entryPoints.web.address=:8081
2019-12-09 10:48:05 +00:00
# Enable the file provider to define routers / middlewares / services in file
--providers.file.directory=/path/to/dynamic/conf
2019-07-02 15:36:04 +00:00
```
2019-06-26 16:18:04 +00:00
Dynamic configuration:
```toml tab="TOML"
# http routing section
[http]
[http.routers]
# Define a connection between requests and services
[http.routers.to-whoami]
2020-03-13 21:50:05 +00:00
rule = "Host(`example.com`) & & PathPrefix(`/whoami/`)"
2019-06-26 16:18:04 +00:00
# If the rule matches, applies the middleware
middlewares = ["test-user"]
# If the rule matches, forward to the whoami service (declared below)
service = "whoami"
[http.middlewares]
# Define an authentication mechanism
2019-07-01 09:30:05 +00:00
[http.middlewares.test-user.basicAuth]
2019-06-26 16:18:04 +00:00
users = ["test:$apr1$H6uskkkW$IgXLP6ewTrSuBkTrqE8wj/"]
[http.services]
# Define how to reach an existing service on our infrastructure
2019-07-01 09:30:05 +00:00
[http.services.whoami.loadBalancer]
[[http.services.whoami.loadBalancer.servers]]
2019-06-26 16:18:04 +00:00
url = "http://private/whoami-service"
```
```yaml tab="YAML"
# http routing section
http:
routers:
# Define a connection between requests and services
to-whoami:
2020-03-13 21:50:05 +00:00
rule: "Host(`example.com`) & & PathPrefix(`/whoami/`)"
2019-06-26 16:18:04 +00:00
# If the rule matches, applies the middleware
middlewares:
- test-user
# If the rule matches, forward to the whoami service (declared below)
service: whoami
2019-07-01 09:30:05 +00:00
2019-06-26 16:18:04 +00:00
middlewares:
# Define an authentication mechanism
test-user:
basicAuth:
users:
- test:$apr1$H6uskkkW$IgXLP6ewTrSuBkTrqE8wj/
2019-07-01 09:30:05 +00:00
2019-06-26 16:18:04 +00:00
services:
# Define how to reach an existing service on our infrastructure
whoami:
2019-07-01 09:30:05 +00:00
loadBalancer:
2019-06-26 16:18:04 +00:00
servers:
- url: http://private/whoami-service
2019-02-26 13:50:07 +00:00
```
2019-09-23 12:32:04 +00:00
!!! info ""
2019-02-26 13:50:07 +00:00
In this example, we use the [file provider ](../providers/file.md ).
Even if it is one of the least magical way of configuring Traefik, it explicitly describes every available notion.
2019-03-14 08:30:04 +00:00
2019-09-23 12:32:04 +00:00
!!! info "HTTP / TCP"
2019-03-14 08:30:04 +00:00
In this example, we've defined routing rules for http requests only.
Traefik also supports TCP requests. To add [TCP routers ](./routers/index.md ) and [TCP services ](./services/index.md ), declare them in a TCP section like in the following.
2020-03-13 21:50:05 +00:00
??? example "Adding a TCP route for TLS requests on whoami.example.com"
2019-03-14 08:30:04 +00:00
2019-09-23 12:32:04 +00:00
**Static Configuration**
2019-06-26 16:18:04 +00:00
2019-07-15 08:22:03 +00:00
```toml tab="File (TOML)"
2019-04-15 09:14:05 +00:00
[entryPoints]
2019-07-01 09:30:05 +00:00
[entryPoints.web]
# Listen on port 8081 for incoming requests
address = ":8081"
2019-03-14 08:30:04 +00:00
[providers]
2019-12-09 10:48:05 +00:00
# Enable the file provider to define routers / middlewares / services in file
2019-07-01 09:30:05 +00:00
[providers.file]
2019-12-09 10:48:05 +00:00
directory = "/path/to/dynamic/conf"
2019-06-26 16:18:04 +00:00
```
2019-07-15 08:22:03 +00:00
```yaml tab="File (YAML)"
2019-07-01 09:30:05 +00:00
entryPoints:
2019-06-26 16:18:04 +00:00
web:
# Listen on port 8081 for incoming requests
address: :8081
providers:
2019-12-09 10:48:05 +00:00
# Enable the file provider to define routers / middlewares / services in file
2019-07-15 08:22:03 +00:00
file:
2019-12-09 10:48:05 +00:00
directory: /path/to/dynamic/conf
2019-06-26 16:18:04 +00:00
```
2019-07-02 15:36:04 +00:00
```bash tab="CLI"
# Listen on port 8081 for incoming requests
2019-11-19 09:18:05 +00:00
--entryPoints.web.address=:8081
2019-07-02 15:36:04 +00:00
2019-12-09 10:48:05 +00:00
# Enable the file provider to define routers / middlewares / services in file
--providers.file.directory=/path/to/dynamic/conf
2019-07-02 15:36:04 +00:00
```
2019-09-23 12:32:04 +00:00
**Dynamic Configuration**
2019-03-14 08:30:04 +00:00
2019-06-26 16:18:04 +00:00
```toml tab="TOML"
# http routing section
[http]
2019-07-01 09:30:05 +00:00
[http.routers]
# Define a connection between requests and services
[http.routers.to-whoami]
2020-03-13 21:50:05 +00:00
rule = "Host(`example.com`) & & PathPrefix(`/whoami/`)"
2019-07-01 09:30:05 +00:00
# If the rule matches, applies the middleware
middlewares = ["test-user"]
# If the rule matches, forward to the whoami service (declared below)
service = "whoami"
[http.middlewares]
# Define an authentication mechanism
[http.middlewares.test-user.basicAuth]
users = ["test:$apr1$H6uskkkW$IgXLP6ewTrSuBkTrqE8wj/"]
[http.services]
# Define how to reach an existing service on our infrastructure
[http.services.whoami.loadBalancer]
[[http.services.whoami.loadBalancer.servers]]
url = "http://private/whoami-service"
[tcp]
[tcp.routers]
[tcp.routers.to-whoami-tcp]
2020-03-13 21:50:05 +00:00
rule = "HostSNI(`whoami-tcp.example.com`)"
2019-07-01 09:30:05 +00:00
service = "whoami-tcp"
[tcp.routers.to-whoami-tcp.tls]
[tcp.services]
[tcp.services.whoami-tcp.loadBalancer]
[[tcp.services.whoami-tcp.loadBalancer.servers]]
address = "xx.xx.xx.xx:xx"
2019-03-14 08:30:04 +00:00
```
2019-06-26 16:18:04 +00:00
```yaml tab="YAML"
# http routing section
http:
2019-07-01 09:30:05 +00:00
2019-06-26 16:18:04 +00:00
routers:
# Define a connection between requests and services
to-whoami:
2020-03-13 21:50:05 +00:00
rule: Host(`example.com`) & & PathPrefix(`/whoami/`)
2019-06-26 16:18:04 +00:00
# If the rule matches, applies the middleware
middlewares:
- test-user
# If the rule matches, forward to the whoami service (declared below)
service: whoami
2019-07-01 09:30:05 +00:00
2019-06-26 16:18:04 +00:00
middlewares:
# Define an authentication mechanism
test-user:
basicAuth:
users:
- test:$apr1$H6uskkkW$IgXLP6ewTrSuBkTrqE8wj/
2019-07-01 09:30:05 +00:00
2019-06-26 16:18:04 +00:00
services:
# Define how to reach an existing service on our infrastructure
whoami:
2019-07-01 09:30:05 +00:00
loadBalancer:
2019-06-26 16:18:04 +00:00
servers:
- url: http://private/whoami-service
tcp:
2019-07-01 09:30:05 +00:00
2019-06-26 16:18:04 +00:00
routers:
to-whoami-tcp:
service: whoami-tcp
2020-03-13 21:50:05 +00:00
rule: HostSNI(`whoami-tcp.example.com`)
2020-10-23 09:00:05 +00:00
tls: {}
2019-07-01 09:30:05 +00:00
2019-06-26 16:18:04 +00:00
services:
whoami-tcp:
2019-07-01 09:30:05 +00:00
loadBalancer:
2019-06-26 16:18:04 +00:00
servers:
- address: xx.xx.xx.xx:xx
```
2019-09-30 15:16:05 +00:00
## Transport configuration
Most of what happens to the connection between the clients and Traefik,
and then between Traefik and the backend servers, is configured through the
[entrypoints ](../entrypoints ) and the [routers ](../routers ).
In addition, a few parameters are dedicated to configuring globally
what happens with the connections between Traefik and the backends.
This is done through the `serversTransport` section of the configuration,
which features these options:
### `insecureSkipVerify`
_Optional, Default=false_
`insecureSkipVerify` disables SSL certificate verification.
```toml tab="File (TOML)"
## Static configuration
[serversTransport]
insecureSkipVerify = true
```
```yaml tab="File (YAML)"
## Static configuration
serversTransport:
insecureSkipVerify: true
```
```bash tab="CLI"
## Static configuration
--serversTransport.insecureSkipVerify=true
```
### `rootCAs`
_Optional_
`rootCAs` is the list of certificates (as file paths, or data bytes)
that will be set as Root Certificate Authorities when using a self-signed TLS certificate.
```toml tab="File (TOML)"
## Static configuration
[serversTransport]
rootCAs = ["foo.crt", "bar.crt"]
```
```yaml tab="File (YAML)"
## Static configuration
serversTransport:
rootCAs:
- foo.crt
- bar.crt
```
```bash tab="CLI"
## Static configuration
--serversTransport.rootCAs=foo.crt,bar.crt
```
### `maxIdleConnsPerHost`
_Optional, Default=2_
If non-zero, `maxIdleConnsPerHost` controls the maximum idle (keep-alive) connections to keep per-host.
```toml tab="File (TOML)"
## Static configuration
[serversTransport]
maxIdleConnsPerHost = 7
```
```yaml tab="File (YAML)"
## Static configuration
serversTransport:
maxIdleConnsPerHost: 7
```
```bash tab="CLI"
## Static configuration
--serversTransport.maxIdleConnsPerHost=7
```
### `forwardingTimeouts`
`forwardingTimeouts` is about a number of timeouts relevant to when forwarding requests to the backend servers.
#### forwardingTimeouts.dialTimeout`
_Optional, Default=30s_
`dialTimeout` is the maximum duration allowed for a connection to a backend server to be established.
Zero means no timeout.
```toml tab="File (TOML)"
## Static configuration
[serversTransport.forwardingTimeouts]
dialTimeout = "1s"
```
```yaml tab="File (YAML)"
## Static configuration
serversTransport:
forwardingTimeouts:
dialTimeout: 1s
```
```bash tab="CLI"
## Static configuration
--serversTransport.forwardingTimeouts.dialTimeout=1s
```
#### forwardingTimeouts.responseHeaderTimeout`
_Optional, Default=0s_
`responseHeaderTimeout` , if non-zero, specifies the amount of time to wait for a server's response headers
after fully writing the request (including its body, if any).
This time does not include the time to read the response body.
Zero means no timeout.
```toml tab="File (TOML)"
## Static configuration
[serversTransport.forwardingTimeouts]
responseHeaderTimeout = "1s"
```
```yaml tab="File (YAML)"
## Static configuration
serversTransport:
forwardingTimeouts:
responseHeaderTimeout: 1s
```
```bash tab="CLI"
## Static configuration
--serversTransport.forwardingTimeouts.responseHeaderTimeout=1s
```
#### forwardingTimeouts.idleConnTimeout`
_Optional, Default=90s_
`idleConnTimeout` , is the maximum amount of time an idle (keep-alive) connection
will remain idle before closing itself.
Zero means no limit.
```toml tab="File (TOML)"
## Static configuration
[serversTransport.forwardingTimeouts]
idleConnTimeout = "1s"
```
```yaml tab="File (YAML)"
## Static configuration
serversTransport:
forwardingTimeouts:
idleConnTimeout: 1s
```
```bash tab="CLI"
## Static configuration
--serversTransport.forwardingTimeouts.idleConnTimeout=1s
```