16 lines
336 B
Caddyfile
16 lines
336 B
Caddyfile
# replace with your HTTPS domain
|
|
:80 {
|
|
@rdserver {
|
|
path "/.well-known/webfinger"
|
|
path "/.well-known/host-meta"
|
|
path "/.well-known/host-meta.xml"
|
|
path "/.well-known/host-meta.json"
|
|
}
|
|
|
|
reverse_proxy @rdserver {
|
|
to "http://rdserver"
|
|
|
|
health_uri "/.healthcheck"
|
|
health_status "204"
|
|
}
|
|
}
|