Files
shuffle-cracked/frontend
2023-03-17 00:51:26 +01:00
..
2020-05-23 10:33:23 +02:00
2022-12-06 19:32:47 +01:00
2023-03-17 00:51:26 +01:00
2020-05-11 19:17:35 +02:00
2022-07-21 15:53:32 +02:00
2022-09-02 00:37:25 +02:00
2022-11-22 16:39:11 +01: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