SirTunnel/caddy_config.json
2020-09-26 15:41:01 -06:00

30 lines
578 B
JSON

{
"apps": {
"http": {
"servers": {
"boreman": {
"listen": [":443"],
"routes": [
{
"match": [
{
"host": ["anders.webstreams.io"]
}
],
"handle": [
{
"handler": "reverse_proxy",
"upstreams": [
{
"dial": ":9001"
}
]
}
]
}
]
}
}
}
}
}