We needed to proxy a couple HTTP services listening on different ports with self signed certificates. Because [[Caddy]] requires a hostname for inline as far as we can tell, the only option was to hardcode IP addresses in the host definition:
```Caddyfile
https://10.8.10.57:8482 {
reverse_proxy localhost:8082
tls internal {
on_demand
}
}
```