You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A setting in webx.config.json to configure Transport Layer Security using a given server certificate and enable Web X to serve over HTTPS. All clients connection over HTTP will be upgraded to HTTPS automatically.
{
"name": "My todo WebX Project",
"version": "1.0.0",
"description": "An example WebX project.",
"tls": {
"cert": "path/to/cert.pem",
"key": "path/to/key.pem"
},
}
cert: Path to the public key certificate file (if null, a self-signed cert will be generated)
A setting in
webx.config.json
to configure Transport Layer Security using a given server certificate and enable Web X to serve over HTTPS. All clients connection over HTTP will be upgraded to HTTPS automatically.cert
: Path to the public key certificate file (if null, a self-signed cert will be generated)key
: Path to the private key file (if null, a self-signed key will be generated)These files can be located in
/etc/letsencrypt/live/example.com
if generated with:This will result in Web X running with the support for secure TLS connections.
The text was updated successfully, but these errors were encountered: