18 lines
299 B
Plaintext
18 lines
299 B
Plaintext
# https://caddyserver.com/docs/caddyfile/options
|
|
{
|
|
}
|
|
|
|
# https://caddyserver.com/docs/caddyfile/patterns
|
|
{{range .Config.proxy}}
|
|
{{.Domain}} {
|
|
reverse_proxy localhost:{{.Port}}
|
|
}
|
|
{{end}}
|
|
|
|
# Proxied services
|
|
{{range .Config.scripted_proxy}}
|
|
{{.Domain}} {
|
|
reverse_proxy localhost:{{.Port}}
|
|
}
|
|
{{end}}
|