fix default value

This commit is contained in:
Martin 2016-05-19 17:12:36 +02:00
parent 414fb1f406
commit e115e3c4e7

View file

@ -292,8 +292,8 @@ func NewTraefikConfiguration() *TraefikConfiguration {
return &TraefikConfiguration{ return &TraefikConfiguration{
GlobalConfiguration: GlobalConfiguration{ GlobalConfiguration: GlobalConfiguration{
GraceTimeOut: 10, GraceTimeOut: 10,
AccessLogsFile: "log/access.log", AccessLogsFile: "",
TraefikLogsFile: "log/traefik.log", TraefikLogsFile: "",
LogLevel: "ERROR", LogLevel: "ERROR",
EntryPoints: map[string]*EntryPoint{"http": &EntryPoint{Address: ":80"}}, EntryPoints: map[string]*EntryPoint{"http": &EntryPoint{Address: ":80"}},
DefaultEntryPoints: []string{"http"}, DefaultEntryPoints: []string{"http"},