Files
shuffle-cracked/frontend/README.md
T
2020-05-23 10:33:23 +02:00

9 lines
231 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
```