You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In index.js, function getHostHeader, I had to changed it to:
_getHostHeader(data) {
if (data[0] === 22) { //secure
let route = this.routes.get(sni(data));
if (route) { // here
return sni(data); // here
}
return null; // here
} else {
let result = data.toString('utf8').match(/^(H|h)ost: (\[[^\]]*\]|[^ \:\r\n]+)/im);
if (result) {
return result[2];
}
}
}
The text was updated successfully, but these errors were encountered:
Hi,
I think there is an issue with HTTPS.
In index.js, function getHostHeader, I had to changed it to:
The text was updated successfully, but these errors were encountered: