Created
May 22, 2021 12:50
-
-
Save dineshsonachalam/9e292bcfc0804b44379c8cba6c140bb4 to your computer and use it in GitHub Desktop.
Generated from traefik.toml by http://localhost:3000/. Gist created by user: dineshsonachalam.
This file contains hidden or 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
{ | |
"api": { | |
"dashboard": true, | |
"insecure": true | |
}, | |
"certificatesResolvers": { | |
"le": { | |
"acme": { | |
"email": "[email protected]", | |
"httpChallenge": { | |
"entryPoint": "web" | |
}, | |
"storage": "/etc/traefik/acme.json" | |
} | |
} | |
}, | |
"entryPoints": { | |
"web": { | |
"address": ":80" | |
}, | |
"websecure": { | |
"address": ":443" | |
} | |
}, | |
"global": { | |
"checkNewVersion": true, | |
"sendAnonymousUsage": true | |
}, | |
"log": { | |
"filePath": "/etc/traefik/log/traefik.log" | |
}, | |
"ping": {}, | |
"providers": { | |
"docker": { | |
"defaultRule": "Host(`{{ normalize .Name }}.your-fqdn.com`)", | |
"endpoint": "unix:///var/run/docker.sock", | |
"exposedByDefault": true, | |
"watch": true | |
}, | |
"file": { | |
"directory": "/etc/traefik/providers/file", | |
"watch": true | |
} | |
}, | |
"serversTransport": { | |
"insecureSkipVerify": true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment