Skip to content

Commit

Permalink
fix: typo in routing example.
Browse files Browse the repository at this point in the history
  • Loading branch information
ldez authored and traefiker committed May 6, 2019
1 parent 558452a commit 441620f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/content/routing/routers/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,12 +186,12 @@ Traefik will terminate the SSL connections (meaning that it will send decrypted

```toml
[http.routers]
[http.routers.Router-1-https]
[http.routers.my-https-router]
rule = "Host(`foo-domain`) && Path(`/foo-path/`)"
service = "service-id"
[http.routers.Router-1.tls] # will terminate the TLS request
[http.routers.my-https-router.tls] # will terminate the TLS request

[http.routers.Router-1-http]
[http.routers.my-http-router]
rule = "Host(`foo-domain`) && Path(`/foo-path/`)"
service = "service-id"
```
Expand Down

0 comments on commit 441620f

Please sign in to comment.