HTTPS Server on FreeMaster Lite

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

HTTPS Server on FreeMaster Lite

Jump to solution
1,469 Views
alex_ga
Contributor I

Hi,

Is it possible to create a HTTPS Server on FreeMaster Lite?

I've seen examples over HTTP but none of them mentions HTTPS.

 

Thanks in advance,

Alex

0 Kudos
1 Solution
1,466 Views
iulian_stan
NXP Employee
NXP Employee

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.

View solution in original post

2 Replies
1,381 Views
Imaaronsmith
Contributor I

 I don't think so, FreeMASTER is a tool for real-time data visualization. FreeMASTER enables non-intrusive variable monitoring on an embedded system using J-Link and the MCU's debug interface. click here to know more about it 

0 Kudos
1,467 Views
iulian_stan
NXP Employee
NXP Employee

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.