mirror of
https://github.com/chuot/rdio-scanner.git
synced 2026-08-13 16:33:01 -06:00
773 B
773 B
Node.js
Definition
{
"nodejs": {
// [optional]
// Should we run our instance in *production* or *development* mode?
// Default is "production".
"env": "production",
// [optional]
// On which IP our instance will answer?
// Default is "0.0.0.0".
"host": "0.0.0.0",
// [optional]
// On which PORT our instance will answer?
// Default is 3000.
"port": 3000,
// [optional]
// Location of the SSL certificate
"sslCert": "./server.crt",
// [optional]
// Location of the SSL private key
"sslKey": "./server.key"
}
}
Rdio Scanner will run in HTTPS only if both sslCert and sslKey are specified.