-
Notifications
You must be signed in to change notification settings - Fork 128
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ability to use SSL in traefik (closes #161)
- Loading branch information
Yaroslav Savchuk
authored and
Louis
committed
Sep 9, 2018
1 parent
5ce1e3f
commit d0c33a8
Showing
2 changed files
with
23 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,25 @@ | ||
logLevel = "INFO" | ||
defaultEntryPoints = ["https","http"] | ||
|
||
[api] | ||
[entryPoints] | ||
[entryPoints.http] | ||
address = ":80" | ||
[entryPoints.https] | ||
address = ":443" | ||
[entryPoints.https.tls] | ||
|
||
[retry] | ||
|
||
[docker] | ||
domain = "local" | ||
endpoint = "unix:///var/run/docker.sock" | ||
domain = "wb.local" | ||
watch = true | ||
exposedByDefault = false | ||
usebindportip = true | ||
exposedbydefault = false | ||
|
||
[acme] | ||
email = "[email protected]" | ||
storage = "acme.json" | ||
entryPoint = "https" | ||
OnHostRule = true | ||
[acme.httpChallenge] | ||
entryPoint = "http" |