Jesús
Results
1
comments of
Jesús
If you have different certificates files, you cans use the next: ``` const https_option = { key: fs.readFileSync('path_key_file.key', 'utf8'), cert: fs.readFileSync('path_cert_file.crt', 'utf8'), ca: [ fs.readFileSync('path_DomainValidationSecureServerCA_cert_file.crt'), fs.readFileSync('USERTrustpath_cert_file.crt') ] } bot.start(process.env.PORT, https_option)...