Files
shuffle-cracked/frontend/README.md
T
2021-11-14 23:50:59 +01:00

10 lines
232 B
Markdown

# Certificate:
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
```