Example Usage
Props
boolean
required
Indicate if SSL should be enabled or not.
string
required
Path to the ssl key file
string
required
Path to the ssl cert file
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
If you want to use the https protocol, you must provide us with a certificate and an SSL key String. This can also be fs.readFileSync.
new DBD.Dashboard({
ssl: {
enabled: Boolean,
key: String,
cert: String,
},
});
new DBD.Dashboard({
ssl: {
enabled: true,
key: fs.readFileSync("key.pem"),
cert: fs.readFileSync("cert.pem"),
},
});
Was this page helpful?