2015-09-14 22:03:53 +00:00
![Træfɪ k ](http://traefik.github.io/traefik.logo.svg "Træfɪ k" )
2015-09-22 08:33:37 +00:00
___
2015-09-13 17:34:05 +00:00
2015-09-14 22:03:53 +00:00
[![Circle CI ](https://img.shields.io/circleci/project/EmileVauge/traefik.svg )](https://circleci.com/gh/EmileVauge/traefik)
[![License ](https://img.shields.io/badge/license-MIT-blue.svg )](https://github.com/EmileVauge/traefik/blob/master/LICENSE.md)
2015-09-22 14:07:49 +00:00
[![Join the chat at https://gitter.im/EmileVauge/traefik ](https://badges.gitter.im/Join%20Chat.svg )](https://gitter.im/EmileVauge/traefik?utm_source=badge& utm_medium=badge& utm_campaign=pr-badge& utm_content=badge)
2015-09-14 09:41:50 +00:00
2015-09-14 09:14:37 +00:00
Træfɪ k is a modern HTTP reverse proxy and load balancer made to deploy microservices with ease.
2015-09-22 08:33:37 +00:00
It supports several backends ([Docker :whale:](https://www.docker.com/), [Mesos/Marathon ](https://mesosphere.github.io/marathon/ ), [Consul ](https://consul.io/ ), [Etcd ](https://coreos.com/etcd/ ), Rest API, file...) to manage its configuration automatically and dynamically.
2015-09-13 17:34:05 +00:00
2015-09-14 09:01:47 +00:00
# Features
2015-09-13 17:34:05 +00:00
* 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
2015-09-22 08:33:37 +00:00
* Circuit breakers on backends
* Round Robin, rebalancer load-balancers
2015-09-13 17:34:05 +00:00
* Rest Metrics
* Tiny docker image included
* SSL backends support
* SSL frontend support
2015-09-22 08:33:37 +00:00
* WebUI
2015-09-13 17:34:05 +00:00
2015-09-28 16:25:41 +00:00
# Demo
Here is a demo of Træfɪ k using Docker backend, showing a load-balancing between two servers, hot reloading of configuration, and graceful shutdown.
[![asciicast ](https://asciinema.org/a/4tcyde7riou5vxulo6my3mtko.png )](https://asciinema.org/a/4tcyde7riou5vxulo6my3mtko)
2015-09-14 09:01:47 +00:00
# Plumbing
2015-09-13 17:34:05 +00:00
2015-09-14 09:01:47 +00:00
* [Oxy ](https://github.com/mailgun/oxy/ ): an awsome proxy library made by Mailgun guys
2015-09-13 19:12:24 +00:00
* [Gorilla mux ](https://github.com/gorilla/mux ): famous request router
* [Negroni ](https://github.com/codegangsta/negroni ): web middlewares made simple
2015-09-25 22:20:45 +00:00
* [Manners ](https://github.com/mailgun/manners ): graceful shutdown of http.Handler servers
2015-09-13 17:34:05 +00:00
2015-09-14 09:01:47 +00:00
# Quick start
2015-09-13 17:34:05 +00:00
2015-09-22 08:33:37 +00:00
* The simple way: grab the latest binary from the [releases ](https://github.com/emilevauge/traefik/releases ) page and just run it with the [sample configuration file ](https://raw.githubusercontent.com/EmileVauge/traefik/master/traefik.sample.toml ):
2015-09-13 17:34:05 +00:00
```
2015-09-14 12:38:21 +00:00
./traefik traefik.toml
2015-09-13 17:34:05 +00:00
```
2015-09-14 12:38:21 +00:00
* Use the tiny Docker image:
2015-09-13 17:34:05 +00:00
```
2015-09-14 22:03:53 +00:00
docker run -d -p 8080:8080 -p 80:80 -v $PWD/traefik.toml:/traefik.toml emilevauge/traefik
2015-09-13 17:34:05 +00:00
```
2015-09-22 08:50:33 +00:00
* From sources:
```
git clone https://github.com/EmileVauge/traefik
```
2015-09-22 08:33:37 +00:00
# Documentation
You can find the complete documentation [here ](docs/index.md ).
2015-09-22 10:03:15 +00:00
2015-09-26 12:42:56 +00:00
# Benchmarks
Refer to the [benchmarks section ](docs/index.md#benchmarks ) in the documentation.
2015-09-22 10:03:15 +00:00
# Contributing
## Building
You need either [Docker ](https://github.com/docker/docker ) and
``make``, or `go` and `godep` in order to build traefik.
### Using Docker and Makefile
You need to run the ``binary`` target. This will create binaries for
linux and darwin platforms in the `dist` folder.
```bash
$ make binary
docker build -t "traefik-dev:your-feature-branch" -f build.Dockerfile .
# […]
docker run --rm -it -e OS_ARCH_ARG -e OS_PLATFORM_ARG -e TESTFLAGS -v "/home/vincent/src/github/vdemeester/traefik/dist:/go/src/github.com/emilevauge/traefik/dist" "traefik-dev:your-feature-branch" ./script/make.sh generate binary
---> Making bundle: generate (in .)
removed 'gen.go'
---> Making bundle: binary (in .)
Number of parallel builds: 8
--> linux/arm: github.com/emilevauge/traefik
--> darwin/amd64: github.com/emilevauge/traefik
--> darwin/386: github.com/emilevauge/traefik
--> linux/386: github.com/emilevauge/traefik
--> linux/amd64: github.com/emilevauge/traefik
$ ls dist/
traefik* traefik_darwin-386* traefik_darwin-amd64* traefik_linux-386* traefik_linux-amd64* traefik_linux-arm*
```
### Using `godep`
The idea behind `godep` is the following :
- when checkout(ing) a project, **run `godep restore`** to install
(`go get …`) the dependencies in the `GOPATH` .
- if you need another dependency, `go get` it, import and use it in
the source, and **run `godep save ./...` to save it in
`Godeps/Godeps.json` and vendoring it in `Godeps/_workspace/src` .
```bash
$ godep restore
2015-09-24 08:01:57 +00:00
# Generate
$ godep go generate
2015-09-22 10:03:15 +00:00
# Simple go build
$ godep go build
# Using gox to build multiple platform
$ GOPATH=`godep path`:$GOPATH gox "linux darwin" "386 amd64 arm" \
-output="dist/traefik_{{.OS}}-{{.Arch}}"
# run other commands like tests
$ godep go test ./...
ok _/home/vincent/src/github/vdemeester/traefik 0.004s
```
## Tests
You can run unit tests using the `test-unit` target and the
integration test using the `test-integration` target.
```bash
$ make test-unit
docker build -t "traefik-dev:your-feature-branch" -f build.Dockerfile .
# […]
docker run --rm -it -e OS_ARCH_ARG -e OS_PLATFORM_ARG -e TESTFLAGS -v "/home/vincent/src/github/vdemeester/traefik/dist:/go/src/github.com/emilevauge/traefik/dist" "traefik-dev:your-feature-branch" ./script/make.sh generate test-unit
---> Making bundle: generate (in .)
removed 'gen.go'
---> Making bundle: test-unit (in .)
+ go test -cover -coverprofile=cover.out .
ok github.com/emilevauge/traefik 0.005s coverage: 4.1% of statements
Test success
```