SirTunnel/caddy_config.json

31 lines
578 B
JSON
Raw Normal View History

2020-09-23 02:14:19 +02:00
{
"apps": {
"http": {
"servers": {
2020-09-26 23:41:01 +02:00
"boreman": {
2020-09-23 02:14:19 +02:00
"listen": [":443"],
"routes": [
2020-09-26 23:41:01 +02:00
{
"match": [
{
"host": ["anders.webstreams.io"]
}
],
"handle": [
{
"handler": "reverse_proxy",
"upstreams": [
{
"dial": ":9001"
}
]
}
]
}
2020-09-23 02:14:19 +02:00
]
}
}
}
}
}