add support for custom wtv-explanation-url on errors

This commit is contained in:
zefie
2022-01-12 10:26:53 -05:00
parent b20d09d3dd
commit 495db31ae1
2 changed files with 20 additions and 0 deletions

View File

@@ -523,6 +523,13 @@ async function doHTTPProxy(socket, request_headers) {
headers["wtv-connection-close"] = true;
}
}
if (minisrv_config.services['http']['wtv-explanation']) {
if (minisrv_config.services['http']['wtv-explanation'][res.statusCode]) {
headers['wtv-explanation-url'] = minisrv_config.services['http']['wtv-explanation'][res.statusCode];
}
}
if (data_hex.substring(0, 8) == "0d0a0d0a") data_hex = data_hex.substring(8);
if (data_hex.substring(0, 4) == "0a0a") data_hex = data_hex.substring(4);
sendToClient(socket, headers, Buffer.from(data_hex, 'hex'));