mirror of
https://github.com/usebruno/bruno.git
synced 2024-11-22 07:53:34 +01:00
cacert support through process environment vars
This commit is contained in:
parent
18afb73238
commit
e328a4615e
@ -53,7 +53,8 @@ const runSingleRequest = async function (filename, bruJson, collectionPath, coll
|
||||
});
|
||||
}
|
||||
else {
|
||||
const cacert = options['cacert'];
|
||||
const cacertArray = [options['cacert'], process.env.SSL_CERT_FILE, process.env.NODE_EXTRA_CA_CERTS];
|
||||
const cacertFile = cacertArray.find(el => el);
|
||||
if (cacert && cacert.length > 1) {
|
||||
try {
|
||||
caCrt = fs.readFileSync(cacert)
|
||||
|
Loading…
Reference in New Issue
Block a user