Files
shuffle-cracked/frontend
lalitdeore acc039623f sso_2.0.0
2024-10-04 13:17:52 +05:30
..
2024-10-04 13:17:52 +05:30
2024-05-14 09:50:07 +05:30
2024-01-31 17:53:38 +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