mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
fix(HTTP Request Node): "Ignore SSL issues" should also ignore legacy renegotiation issues (#6492)
This commit is contained in:
committed by
GitHub
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,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user