Sub-Store/scripts/vmess-ws-obfs-host.js
2022-05-24 12:25:14 +08:00

9 lines
215 B
JavaScript

function operator(proxies) {
const host = $arguments.host;
proxies.forEach(p => {
if (p.type === 'vmess') {
p["ws-opts"]["headers"]["Host"] = host;
}
});
return proxies;
}