Hi @alex_ga,
Yes you can create a HTTPS server. In order to enable it you need to add SSL option to the configuration file. You will need to provide a security key and a certificate.
{
"port": "8090",
"web_root": "C:/NXP/FreeMASTER 3.2/FreeMASTER Lite/html",
"node_red": true,
"ssl": {
"key": "./key.pem",
"cert": "./cert.pem"
}
}
Once the server is started the web content will be served via HTTPS and the JSON-RPC API via WSS.