2015-09-11 14:37:13 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2016-05-03 14:52:14 +00:00
|
|
|
"encoding/json"
|
|
|
|
log "github.com/Sirupsen/logrus"
|
|
|
|
"github.com/containous/flaeg"
|
|
|
|
"github.com/containous/staert"
|
2016-05-25 15:06:34 +00:00
|
|
|
"github.com/containous/traefik/acme"
|
2016-05-03 14:52:14 +00:00
|
|
|
"github.com/containous/traefik/middlewares"
|
2016-05-18 13:45:48 +00:00
|
|
|
"github.com/containous/traefik/provider"
|
2015-09-24 15:16:13 +00:00
|
|
|
fmtlog "log"
|
2016-05-03 14:52:14 +00:00
|
|
|
"net/http"
|
2015-09-24 15:16:13 +00:00
|
|
|
"os"
|
2016-05-03 14:52:14 +00:00
|
|
|
"reflect"
|
2015-11-01 15:35:01 +00:00
|
|
|
"runtime"
|
2016-05-03 14:52:14 +00:00
|
|
|
"strings"
|
2015-09-11 23:55:10 +00:00
|
|
|
)
|
2015-09-11 14:37:13 +00:00
|
|
|
|
|
|
|
func main() {
|
2015-09-25 22:20:45 +00:00
|
|
|
runtime.GOMAXPROCS(runtime.NumCPU())
|
2016-05-03 14:52:14 +00:00
|
|
|
|
|
|
|
//traefik config inits
|
|
|
|
traefikConfiguration := NewTraefikConfiguration()
|
2016-05-25 15:06:34 +00:00
|
|
|
traefikPointersConfiguration := NewTraefikDefaultPointersConfiguration()
|
2016-05-03 14:52:14 +00:00
|
|
|
//traefik Command init
|
|
|
|
traefikCmd := &flaeg.Command{
|
|
|
|
Name: "traefik",
|
|
|
|
Description: `traefik is a modern HTTP reverse proxy and load balancer made to deploy microservices with ease.
|
|
|
|
Complete documentation is available at https://traefik.io`,
|
|
|
|
Config: traefikConfiguration,
|
|
|
|
DefaultPointersConfig: traefikPointersConfiguration,
|
|
|
|
Run: func() error {
|
|
|
|
run(traefikConfiguration)
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
//version Command init
|
|
|
|
versionCmd := &flaeg.Command{
|
2016-05-24 12:58:25 +00:00
|
|
|
Name: "version",
|
|
|
|
Description: `Print version`,
|
|
|
|
Config: struct{}{},
|
|
|
|
DefaultPointersConfig: struct{}{},
|
2016-05-03 14:52:14 +00:00
|
|
|
Run: func() error {
|
|
|
|
fmtlog.Println(Version + " built on the " + BuildDate)
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
//init flaeg source
|
|
|
|
f := flaeg.New(traefikCmd, os.Args[1:])
|
|
|
|
//add custom parsers
|
|
|
|
f.AddParser(reflect.TypeOf(EntryPoints{}), &EntryPoints{})
|
|
|
|
f.AddParser(reflect.TypeOf(DefaultEntryPoints{}), &DefaultEntryPoints{})
|
2016-05-18 13:45:48 +00:00
|
|
|
f.AddParser(reflect.TypeOf(provider.Namespaces{}), &provider.Namespaces{})
|
2016-05-25 15:06:34 +00:00
|
|
|
f.AddParser(reflect.TypeOf([]acme.Domain{}), &acme.Domains{})
|
|
|
|
|
2016-05-03 14:52:14 +00:00
|
|
|
//add version command
|
|
|
|
f.AddCommand(versionCmd)
|
2016-05-24 12:58:25 +00:00
|
|
|
if _, err := f.Parse(traefikCmd); err != nil {
|
|
|
|
fmtlog.Println(err)
|
|
|
|
os.Exit(-1)
|
|
|
|
}
|
|
|
|
|
|
|
|
//staert init
|
|
|
|
s := staert.NewStaert(traefikCmd)
|
|
|
|
//init toml source
|
|
|
|
toml := staert.NewTomlSource("traefik", []string{traefikConfiguration.ConfigFile, "/etc/traefik/", "$HOME/.traefik/", "."})
|
2016-05-03 14:52:14 +00:00
|
|
|
|
|
|
|
//add sources to staert
|
|
|
|
s.AddSource(toml)
|
|
|
|
s.AddSource(f)
|
2016-05-27 08:04:56 +00:00
|
|
|
if _, err := s.LoadConfig(); err != nil {
|
2016-05-24 12:58:25 +00:00
|
|
|
fmtlog.Println(err)
|
|
|
|
}
|
2016-05-30 09:37:12 +00:00
|
|
|
|
|
|
|
traefikConfiguration.ConfigFile = toml.ConfigFileUsed()
|
|
|
|
|
2016-05-03 14:52:14 +00:00
|
|
|
if err := s.Run(); err != nil {
|
2016-01-13 21:46:44 +00:00
|
|
|
fmtlog.Println(err)
|
|
|
|
os.Exit(-1)
|
2015-11-23 14:41:16 +00:00
|
|
|
}
|
2016-05-03 14:52:14 +00:00
|
|
|
|
2016-01-13 21:46:44 +00:00
|
|
|
os.Exit(0)
|
2015-09-11 14:37:13 +00:00
|
|
|
}
|
2016-05-03 14:52:14 +00:00
|
|
|
|
|
|
|
func run(traefikConfiguration *TraefikConfiguration) {
|
|
|
|
fmtlog.SetFlags(fmtlog.Lshortfile | fmtlog.LstdFlags)
|
|
|
|
|
|
|
|
// load global configuration
|
|
|
|
globalConfiguration := traefikConfiguration.GlobalConfiguration
|
|
|
|
|
|
|
|
http.DefaultTransport.(*http.Transport).MaxIdleConnsPerHost = globalConfiguration.MaxIdleConnsPerHost
|
|
|
|
loggerMiddleware := middlewares.NewLogger(globalConfiguration.AccessLogsFile)
|
|
|
|
defer loggerMiddleware.Close()
|
|
|
|
|
|
|
|
// logging
|
|
|
|
level, err := log.ParseLevel(strings.ToLower(globalConfiguration.LogLevel))
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal("Error getting level", err)
|
|
|
|
}
|
|
|
|
log.SetLevel(level)
|
|
|
|
|
2016-05-30 09:37:12 +00:00
|
|
|
if traefikConfiguration.File != nil && len(traefikConfiguration.File.Filename) == 0 {
|
|
|
|
// no filename, setting to global config file
|
|
|
|
if len(traefikConfiguration.ConfigFile) != 0 {
|
|
|
|
traefikConfiguration.File.Filename = traefikConfiguration.ConfigFile
|
|
|
|
} else {
|
|
|
|
log.Errorln("Error using file configuration backend, no filename defined")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(traefikConfiguration.EntryPoints) == 0 {
|
|
|
|
traefikConfiguration.EntryPoints = map[string]*EntryPoint{"http": {Address: ":80"}}
|
|
|
|
traefikConfiguration.DefaultEntryPoints = []string{"http"}
|
|
|
|
}
|
|
|
|
|
2016-05-03 14:52:14 +00:00
|
|
|
if len(globalConfiguration.TraefikLogsFile) > 0 {
|
|
|
|
fi, err := os.OpenFile(globalConfiguration.TraefikLogsFile, os.O_RDWR|os.O_CREATE|os.O_APPEND, 0666)
|
|
|
|
defer func() {
|
|
|
|
if err := fi.Close(); err != nil {
|
|
|
|
log.Error("Error closinf file", err)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal("Error opening file", err)
|
|
|
|
} else {
|
|
|
|
log.SetOutput(fi)
|
|
|
|
log.SetFormatter(&log.TextFormatter{DisableColors: true, FullTimestamp: true, DisableSorting: true})
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
log.SetFormatter(&log.TextFormatter{FullTimestamp: true, DisableSorting: true})
|
|
|
|
}
|
|
|
|
jsonConf, _ := json.Marshal(globalConfiguration)
|
2016-05-24 13:45:20 +00:00
|
|
|
log.Infof("Traefik version %s built on %s", Version, BuildDate)
|
2016-05-30 15:57:57 +00:00
|
|
|
if len(traefikConfiguration.ConfigFile) != 0 {
|
|
|
|
log.Infof("Using TOML configuration file %s", traefikConfiguration.ConfigFile)
|
|
|
|
}
|
2016-05-03 14:52:14 +00:00
|
|
|
log.Debugf("Global configuration loaded %s", string(jsonConf))
|
|
|
|
server := NewServer(globalConfiguration)
|
|
|
|
server.Start()
|
|
|
|
defer server.Close()
|
|
|
|
log.Info("Shutting down")
|
|
|
|
}
|