Fixed app documentation loading

This commit is contained in:
frikky
2022-09-02 00:37:25 +02:00
parent 72bf8399b5
commit 2055c66630
3 changed files with 20 additions and 5 deletions
+12 -1
View File
@@ -1,4 +1,4 @@
# Certificate:
## Localhost Certificate info:
Creating a localhost certificate:
@@ -7,3 +7,14 @@ 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
```