17 lines
346 B
Text
17 lines
346 B
Text
|
# you can use a custom confiuration file
|
||
|
# copy this to say my.conf
|
||
|
# then in .env use CONF=my
|
||
|
# and my.conf will be used instead of Caddyfile
|
||
|
*.mydomain.net {
|
||
|
|
||
|
tls email@gmail.com {
|
||
|
dns route53 {
|
||
|
max_retries 10
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@portainer host docker.mydomain.net
|
||
|
handle @portainer {
|
||
|
reverse_proxy 10.0.0.5:9000
|
||
|
}
|
||
|
}
|