So I have a caddyfile everything works great. But there is one wildcard which requires it to be on Http/1.1
So when I do it globally like
{
servers {
protocols h1
}
}
That works great, but I don’t want that to be global, I want it on a specific wildcard
@speedtest host speedtest.x.duckdns.org
handle @speedtest {
reverse_proxy x.x.x.x:49159
}
Is there way to achieve it for wildcard only ?