Docs corrections
This commit is contained in:
parent
3ae51bbb11
commit
f743cd8bff
3 changed files with 15 additions and 8 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -4,3 +4,4 @@ gen.go
|
||||||
log
|
log
|
||||||
*.iml
|
*.iml
|
||||||
./traefik
|
./traefik
|
||||||
|
traefik.toml
|
||||||
|
|
|
@ -46,6 +46,12 @@ It supports several backends ([Docker :whale:](https://www.docker.com/), [Mesos/
|
||||||
docker run -d -p 8080:8080 -p 80:80 -v $PWD/traefik.toml:/traefik.toml emilevauge/traefik
|
docker run -d -p 8080:8080 -p 80:80 -v $PWD/traefik.toml:/traefik.toml emilevauge/traefik
|
||||||
```
|
```
|
||||||
|
|
||||||
|
* From sources:
|
||||||
|
|
||||||
|
```
|
||||||
|
git clone https://github.com/EmileVauge/traefik
|
||||||
|
```
|
||||||
|
|
||||||
# Documentation
|
# Documentation
|
||||||
|
|
||||||
You can find the complete documentation [here](docs/index.md).
|
You can find the complete documentation [here](docs/index.md).
|
||||||
|
|
|
@ -13,7 +13,7 @@ ___
|
||||||
* [Consul backend](#consul)
|
* [Consul backend](#consul)
|
||||||
|
|
||||||
|
|
||||||
## <a id="basics">:anchor:</a> Basics
|
## <a id="basics"></a> Basics
|
||||||
|
|
||||||
|
|
||||||
Træfɪk is a modern HTTP reverse proxy and load balancer made to deploy microservices with ease.
|
Træfɪk is a modern HTTP reverse proxy and load balancer made to deploy microservices with ease.
|
||||||
|
@ -45,7 +45,7 @@ Various types of load-balancing is supported:
|
||||||
|
|
||||||
A circuit breaker can also be applied to a backend, preventing high loads on failing servers.
|
A circuit breaker can also be applied to a backend, preventing high loads on failing servers.
|
||||||
|
|
||||||
## <a id="global">:anchor:</a> Global configuration
|
## <a id="global"></a> Global configuration
|
||||||
|
|
||||||
```toml
|
```toml
|
||||||
# traefik.toml
|
# traefik.toml
|
||||||
|
@ -103,7 +103,7 @@ A circuit breaker can also be applied to a backend, preventing high loads on fai
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
## <a id="file">:anchor:</a> File backend
|
## <a id="file"></a> File backend
|
||||||
|
|
||||||
Like any other reverse proxy, Træfɪk can be configured with a file. You have two choices:
|
Like any other reverse proxy, Træfɪk can be configured with a file. You have two choices:
|
||||||
|
|
||||||
|
@ -194,7 +194,7 @@ If you want Træfɪk to watch file changes automatically, just add:
|
||||||
watch = true
|
watch = true
|
||||||
```
|
```
|
||||||
|
|
||||||
## <a id="api">:anchor:</a> API backend
|
## <a id="api"></a> API backend
|
||||||
|
|
||||||
Træfik can be configured using a restful api.
|
Træfik can be configured using a restful api.
|
||||||
To enable it:
|
To enable it:
|
||||||
|
@ -307,7 +307,7 @@ $ curl -s "http://localhost:8082/api" | jq .
|
||||||
* ```/api/frontends/{frontend}```: ```GET``` a frontend
|
* ```/api/frontends/{frontend}```: ```GET``` a frontend
|
||||||
|
|
||||||
|
|
||||||
## <a id="docker">:anchor:</a> Docker backend
|
## <a id="docker"></a> Docker backend
|
||||||
|
|
||||||
Træfɪk can be configured to use Docker as a backend configuration:
|
Træfɪk can be configured to use Docker as a backend configuration:
|
||||||
|
|
||||||
|
@ -354,7 +354,7 @@ Labels can be used on containers to override default behaviour:
|
||||||
* ```traefik.port=80```: register this port. Useful when the container exposes multiples ports.
|
* ```traefik.port=80```: register this port. Useful when the container exposes multiples ports.
|
||||||
* ```traefik.weight=10```: assign this weight to the container
|
* ```traefik.weight=10```: assign this weight to the container
|
||||||
|
|
||||||
## <a id="marathon">:anchor:</a> Marathon backend
|
## <a id="marathon"></a> Marathon backend
|
||||||
|
|
||||||
Træfɪk can be configured to use Marathon as a backend configuration:
|
Træfɪk can be configured to use Marathon as a backend configuration:
|
||||||
|
|
||||||
|
@ -410,7 +410,7 @@ Labels can be used on containers to override default behaviour:
|
||||||
* ```traefik.port=80```: register this port. Useful when the application exposes multiples ports.
|
* ```traefik.port=80```: register this port. Useful when the application exposes multiples ports.
|
||||||
* ```traefik.weight=10```: assign this weight to the application
|
* ```traefik.weight=10```: assign this weight to the application
|
||||||
|
|
||||||
## <a id="consul">:anchor:</a> Consul backend
|
## <a id="consul"></a> Consul backend
|
||||||
|
|
||||||
Træfɪk can be configured to use Consul as a backend configuration:
|
Træfɪk can be configured to use Consul as a backend configuration:
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue