mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-02 07:01:30 -08:00
fix(HTTP Request Node): "Ignore SSL issues" should also ignore legacy renegotiation issues (#6492)
This commit is contained in:
parent
f2154fba60
commit
7a95e08bfd
|
@ -425,6 +425,7 @@ async function parseRequestObject(requestObject: IDataObject) {
|
||||||
if (requestObject.rejectUnauthorized === false) {
|
if (requestObject.rejectUnauthorized === false) {
|
||||||
axiosConfig.httpsAgent = new Agent({
|
axiosConfig.httpsAgent = new Agent({
|
||||||
rejectUnauthorized: false,
|
rejectUnauthorized: false,
|
||||||
|
secureOptions: crypto.constants.SSL_OP_LEGACY_SERVER_CONNECT,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue