18 lines
279 B
Caddyfile
Raw Permalink Normal View History

2025-02-21 19:33:39 -08:00
{
auto_https off
admin off
http_port 9000
}
:9000 {
# Route for tracker-helper service
handle_path /helper/* {
reverse_proxy localhost:5063
}
# Route for Prometheus metrics
handle_path /metrics/* {
reverse_proxy localhost:9000
}
}