shell-host/containers/caddy/conf/example.conf

23 lines
425 B
Bash

#!/bin/bash
# example using wildcart
*.domain.net *.subdomain.domain.net {
tls domain.net@gmail.com {
dns route53 {
max_retries 10
}
}
# example simple files server
# @files host files.domain.net
# handle @files {
# root * <some dir>
# file_server browse
# }
@portainer host docker.domain.net
handle @portainer {
reverse_proxy subdomain.domain.net:9000
}
}