Files
shuffle-cracked/frontend
Aditya 742bdbd221 Revert "Merge branch 'main' into nightly"
This reverts commit 2d77af103a, reversing
changes made to 2c8ed1a418.
2024-12-13 17:24:50 +05:30
..
2024-11-30 22:42:19 +05:30
2024-10-18 13:43:10 +02:00
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