Files
shuffle-cracked/frontend
Frikky 402f23fe22 Merge pull request #1398 from satti-hari-krishna-reddy/comTenz
A simple Modal for pipeline trigger and made improvements in tenzir deployement
2024-05-21 16:53:54 +02:00
..
2024-03-18 00:50:35 +01:00
2024-05-01 00:14:18 +02:00
2023-07-06 17:39:40 +02:00
2020-05-11 19:17:35 +02:00

Localhost Certificate info:

Creating a localhost certificate:

openssl genrsa -out privkey.pem 2048
openssl req -new -key privkey.pem -out certreq.csr
openssl x509 -req -days 3650 -in certreq.csr -signkey privkey.pem -out fullchain.pem

Using your own certificate

If you have your own .crt and .key file, you can do it like this:

openssl x509 -in mycert.crt -out fullchain.cert.pem -outform PEM

The KEY file has to be named privkey.pem

mv cert.key privkey.pem