I am trying to build a simple proxy with a simple GET call to retrieve data. The Backend API has a self signed certificate which is resulting in a
"Self Signed Certificate in chain" error
I imported their cerificate in my server but it was still showing the same error.
I tried to disable the certificate check in edge microgateway by modifying the network.js file in "edgemicro/node_modules/microgateway-config/lib" directory.
In the above mentioned JS file, I set the opts['rejectUnauthorized'] = false; but even that did not work.
I want to know if there is a way to disable the certificate check in microgateway.