23 lines
425 B
Plaintext
23 lines
425 B
Plaintext
|
#!/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
|
||
|
}
|
||
|
}
|