I'm trying to install this project: https://github.com/versatica/mediasoup-demo
It requires fullchain.pem and privkey.pem files.
How do I generate these with openssl or something similar, on Ubuntu 20?
I'm trying to install this project: https://github.com/versatica/mediasoup-demo
It requires fullchain.pem and privkey.pem files.
How do I generate these with openssl or something similar, on Ubuntu 20?
openssl genrsa > privkey.pem
openssl req -new -x509 -key privkey.pem > fullchain.pem