Added certificate overview

This commit is contained in:
frikky
2020-05-23 10:33:23 +02:00
parent 3c42f35dae
commit c68aba0874
16 changed files with 123 additions and 424 deletions
+8
View File
@@ -0,0 +1,8 @@
# 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
```