Files
shuffle-cracked/frontend
2026-03-24 23:27:53 +05:30
..
2026-02-10 13:29:26 +01:00
2026-03-24 23:27:53 +05:30
2026-01-22 20:14:57 +05:30
2026-01-22 20:07:18 +05:30
2026-01-22 20:33:22 +05:30
2024-10-15 15:15:44 +02:00
2020-05-11 19:17:35 +02:00
2026-01-22 20:14:57 +05:30

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