Félicien FRANCOIS

Results 8 issues of Félicien FRANCOIS

I'm using secrets to store certificates. When restarting Docker Flow Proxy, I get a SSL_ERROR_RX_RECORD_TOO_LONG error on Firefox on all domains (i.e. the served certificate is invalid). I need to...

Fix https://github.com/molnarg/node-http2/issues/182

Needed to be able to handles thoose errors gracefully because endpoint is not exposed.

With `https`, I can create a tls server without any initial context ``` javascript var server = https.createServer(); ``` And add dynamic SNI contexts later: ``` javascript server.addContext(hostname, { key:...

feature
compatibility

At the end of one of my source files: ``` css ... /*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uI.....jc3MifQ== */ ``` When activating sourceMap = true, I get the following error: ``` Running "cssmin:dev" (cssmin)...

### How can we help? I would like to intercept InAppMessage clicks and open data.result.url inside the app if the url match a pattern. I've tried the following: plugins.OneSignal.InAppMessages.addEventListener("click", (data)...

Currently, the `BrowserWindow.webPreferences.nodeIntegration` option is left by default to the electron default which is `true`. This means that the nodejs integration in the browser window context is enabled by default....

enhancement

Examples: ``` javascript proxy.onRequest(function(ctx, callback) { // I want to answer the request myself, without making a request to a server // callback() would create the request to the server...