18 lines
331 B
Caddyfile
18 lines
331 B
Caddyfile
nws.roosens.me {
|
|
reverse_proxy localhost:8002 {
|
|
header_down +X-Robots-Tag "none"
|
|
}
|
|
|
|
route /metrics {
|
|
@local {
|
|
remote_ip 127.0.0.1 ::1
|
|
}
|
|
handle @local {
|
|
reverse_proxy localhost:8002
|
|
}
|
|
|
|
handle {
|
|
respond "Not Found" 404
|
|
}
|
|
}
|
|
}
|