mirror of
https://github.com/Mailu/Mailu.git
synced 2024-12-14 10:53:30 +02:00
d6ba39b6a9
- Removed code tages to increase readability - Some extra line-breaks for source readability - Fix link to new mailu/traefik-certdumper container - dhparams is no longer stored in /certs - Use a proper "note" box - Fix typo in docs/compose/traefik directory name - Include links to example config files - Fix toml lexer build warning
34 lines
801 B
TOML
34 lines
801 B
TOML
# This is just boilerplate stuff you probably have in your own config
|
|
logLevel = "INFO"
|
|
defaultEntryPoints = ["https","http"]
|
|
|
|
[entryPoints]
|
|
[entryPoints.http]
|
|
address = ":80"
|
|
[entryPoints.http.redirect]
|
|
entryPoint = "https"
|
|
[entryPoints.https]
|
|
address = ":443"
|
|
[entryPoints.https.tls]
|
|
|
|
[docker]
|
|
endpoint = "unix:///var/run/docker.sock"
|
|
watch = true
|
|
exposedByDefault = false
|
|
|
|
# Make sure we get acme.json saved, and onHostRule enabled
|
|
[acme]
|
|
email = "your@mail.tld"
|
|
storage = "acme.json"
|
|
entryPoint = "https"
|
|
onHostRule = true
|
|
|
|
[acme.httpChallenge]
|
|
entryPoint = "http"
|
|
|
|
# This should include all of your mail domains, and main= should be your $TRAEFIK_DOMAIN
|
|
[[acme.domains]]
|
|
main = "mail.your.doma.in"
|
|
sans = ["web.mail.your.doma.in", "smtp.mail.doma.in", "imap.mail.doma.in"]
|
|
|