You need to put the following code into your "shell" (core electron init) file:
// SSL/TSL: this is the self signed certificate support
app.on('certificate-error', (event, webContents, url, error, certificate, callback) => {
// On certificate error we disable default behaviour (stop loading the page)
// and we then say "it is all fine - true" to the callback
event.preventDefault();
callback(true);
});
This would allow insecure (invalid) certificates like self-signed one.
? Please note that this is NOT a secure way of connecting to the server.
For more, check the documentation:
https://electron.atom.io/docs/api/app/#event-certificate-error
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…