How to set ssh keys ?

Issue #388 closed
cdlvsm created an issue

As David tells on this page

For running my own ssl client, I have to set pem keys like below.

const privateKey = fs.readFileSync('/etc/letsencrypt/live/yourdomain.com/privkey.pem', 'utf8');

const certificate = fs.readFileSync('/etc/letsencrypt/live/yourdomain.com/cert.pem', 'utf8');

const ca = fs.readFileSync('/etc/letsencrypt/live/yourdomain.com/chain.pem', 'utf8');

How can I do that with poste.io ?

Comments (4)

  1. SH repo owner

    I don't understand what you mean by your own ssl client.

    Poste itself can handle Lets encrypt certs by itself

  2. Log in to comment