Go to file
2015-09-15 00:03:53 +02:00
docs config template, backends 2015-09-14 15:38:58 +02:00
middlewares docker backoff, routes middleware 2015-09-12 19:22:44 +02:00
providerTemplates go-bindata static files and templates 2015-09-11 18:47:54 +02:00
static static 2015-09-11 16:55:44 +02:00
templates config template, backends 2015-09-14 15:38:58 +02:00
circle.yml git describe --tags --abbrev=0 2015-09-15 00:03:53 +02:00
configuration.go traefik.toml comments 2015-09-14 14:38:21 +02:00
docker.go docker backoff, routes middleware 2015-09-12 19:22:44 +02:00
Dockerfile Dockerfile rename 2015-09-14 11:34:31 +02:00
file.go Negroni middlewares 2015-09-12 15:10:03 +02:00
generate.go Negroni middlewares 2015-09-12 15:10:03 +02:00
LICENSE.md Licence 2015-09-10 10:02:51 +02:00
marathon.go Negroni middlewares 2015-09-12 15:10:03 +02:00
provider.go web provider 2015-09-08 13:33:10 +02:00
README.md git describe --tags --abbrev=0 2015-09-15 00:03:53 +02:00
traefik.go docker backoff, routes middleware 2015-09-12 19:22:44 +02:00
traefik.sample.toml git describe --tags --abbrev=0 2015-09-15 00:03:53 +02:00
traefik.toml config template, backends 2015-09-14 15:38:58 +02:00
web.go Negroni middlewares 2015-09-12 15:10:03 +02:00

Træfɪk

Circle CI Forks Stars License

Træfɪk is a modern HTTP reverse proxy and load balancer made to deploy microservices with ease. It supports several backends (Docker, Mesos/Marathon, Consul, Etcd, Rest API, file...) to manage its configuration automatically and dynamically (hot-reload).

Backends

Features

  • No dependency hell, single binary made with go
  • Simple json Rest API
  • Simple TOML file configuration
  • Multiple backends supported: Docker, Mesos/Marathon, Consul, Etcd, and more to come
  • Watchers for backends, can listen change in backends to apply a new configuration automatically
  • Hot-reloading of configuration. No need to restart the process
  • Graceful shutdown http connections during hot-reloads
  • Rest Metrics
  • Tiny docker image included
  • SSL backends support
  • SSL frontend support

Plumbing

  • Oxy: an awsome proxy library made by Mailgun guys
  • Gorilla mux: famous request router
  • Negroni: web middlewares made simple
  • Graceful: graceful shutdown of http.Handler servers

Quick start

  • The simple way: grab the latest binary from the Github releases page and just run it with the sample configuration file:
./traefik traefik.toml
  • Use the tiny Docker image:
docker run -d -p 8080:8080 -p 80:80 -v $PWD/traefik.toml:/traefik.toml emilevauge/traefik

Configuration