Created
November 10, 2018 12:01
-
-
Save makasim/2856a64e26639416a384955747ae90f4 to your computer and use it in GitHub Desktop.
Secure Docker Registry with Traefik and LetsEncrypt 2
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
[entryPoints] | |
[entryPoints.http] | |
address = ":80" | |
[entryPoints.https] | |
address = ":443" | |
[entryPoints.https.tls] | |
[acme] | |
email = "[email protected]" | |
onHostRule = true | |
storage = "acme.json" | |
entryPoint = "https" | |
[acme.httpChallenge] | |
entryPoint = "http" | |
[[acme.domains]] | |
main = "registry.foobar.com" | |
sans = ["registry.foobar.com"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment