How to Install Let's Encrypt SSL On Ubuntu Server For nodeExpress and angular

Please fill out the fields below so we can help you better. Note: you must provide your domain name to get help. Domain names for issued certificates are all made public in Certificate Transparency logs (e.g. https://crt.sh/?q=example.com), so withholding your domain name here does not increase secrecy, but only makes it harder for us to provide help.

My domain is:qa.kerloresearch.com

I ran this command: sudo certbot --apache -d qa.kerloresearch.com -d www.qa.kerloresearch.com

It produced this output:

My web server is (include version):

The operating system my web server runs on is (include version):

My hosting provider, if applicable, is: vultr.com

I can login to a root shell on my machine (yes or no, or I don’t know): Yes

I’m using a control panel to manage my site (no, or provide the name and version of the control panel): NO

The version of my client is (e.g. output of certbot --version or certbot-auto --version if you’re using Certbot):

Express Uses the NodeJS TLS syntax

You will need the Certificate, The Intermediates and the Private Key to be available on your disk system

Then add the following to your express configuration

const https = require('https');
const fs = require('fs');

// serve the API with signed certificate on 443 (SSL/HTTPS) port
const httpsServer = https.createServer({
  key: fs.readFileSync('/etc/letsencrypt/live/my_api_url/privkey.pem'),
  cert: fs.readFileSync('/etc/letsencrypt/live/my_api_url/fullchain.pem'),
}, app);

httpsServer.listen(443, () => {
    console.log('HTTPS Server running on port 443');
});

the good news is that you have the certificates you just haven't included them in your Express configuration

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.