Go to file
2015-09-22 10:50:33 +02:00
docs Docs corrections 2015-09-22 10:50:33 +02:00
middlewares Circuit breaker middleware 2015-09-19 13:02:59 +02:00
providerTemplates Consul Backend 2015-09-21 18:05:56 +02:00
script Removes windows in platforms because of https://github.com/mailgun/log/issues/10 2015-09-19 14:56:28 +02:00
static static 2015-09-11 16:55:44 +02:00
templates refactor rules, api enhancements 2015-09-15 18:35:32 +02:00
tests Consul Backend 2015-09-21 18:05:56 +02:00
.gitignore Docs corrections 2015-09-22 10:50:33 +02:00
adapters.go Circuit breaker middleware 2015-09-19 13:02:59 +02:00
build.Dockerfile Removes windows in platforms because of https://github.com/mailgun/log/issues/10 2015-09-19 14:56:28 +02:00
circle.yml Update circle.yml 2015-09-17 20:54:50 +02:00
configuration.go Consul Backend 2015-09-21 18:05:56 +02:00
consul.go Consul Backend 2015-09-21 18:05:56 +02:00
docker.go Consul Backend 2015-09-21 18:05:56 +02:00
Dockerfile Update building stuff 2015-09-15 23:09:48 +02:00
file.go Negroni middlewares 2015-09-12 15:10:03 +02:00
file_test.go Update building stuff 2015-09-15 23:09:48 +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
Makefile Circuit breaker middleware 2015-09-19 13:02:59 +02:00
marathon.go Consul Backend 2015-09-21 18:05:56 +02:00
provider.go web provider 2015-09-08 13:33:10 +02:00
README.md Docs corrections 2015-09-22 10:50:33 +02:00
traefik.go Consul Backend 2015-09-21 18:05:56 +02:00
traefik.sample.toml Consul Backend 2015-09-21 18:05:56 +02:00
web.go Docs 2015-09-22 10:33:37 +02:00

Træfɪk


Circle CI 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.

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
  • Circuit breakers on backends
  • Round Robin, rebalancer load-balancers
  • Rest Metrics
  • Tiny docker image included
  • SSL backends support
  • SSL frontend support
  • WebUI

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

./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
  • From sources:
git clone https://github.com/EmileVauge/traefik

Documentation

You can find the complete documentation here.