小鸡只有v6,然后想着开cf小云朵能用v4访问,然后就用了Caddy作为入口,每个服务都是子路径
Caddyfile:
https://nocf.xx.com:2096, https://cf.xx.com:2096 {
tls /cert/xx.com/fullchain.pem /cert/xx.com/privkey.pem
root * /html
file_server
redir /ssh /ssh/
handle_path /ssh/* {
reverse_proxy 172.17.0.1:1111
}
handle /sshwifty/* {
reverse_proxy 172.17.0.1:1111
}
redir /speedtest /speedtest/
handle_path /speedtest/* {
reverse_proxy 172.17.0.1:2222
}
redir /qb /qb/
handle_path /qb/* {
reverse_proxy 172.17.0.1:3333 {
header_up Host 172.17.0.1:3333
header_up X-Forwarded-Host {hostport}
header_up -Origin
header_up -Referer
}
}
}
然后发现ssh,speedtest服务cf和nocf都是正常的,唯独qbittorrent的cf不太正常,nocf又是正常的。如下图所示


不知道从哪里查起,所以请教mjj老湿,求求了! 
解决了,关了cf的Rocket Loader就行了,参考https://github.com/qbittorrent/qBittorrent/issues/21673