Files
shuffle-cracked/frontend
2025-03-04 01:03:03 +05:30
..
2025-03-04 00:13:31 +05:30
2025-03-04 01:03:03 +05:30
2024-11-30 15:23:13 +01:00
2024-10-15 15:15:44 +02:00
2020-05-11 19:17:35 +02:00

Lalits frontend magic

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