Added certificate overview
This commit is contained in:
@@ -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
|
||||
```
|
||||
Reference in New Issue
Block a user