mirror of https://github.com/pikvm/pikvm.git
Update Community_FAQ.md (#254)
Fixed spelling mistakes in the "SSL section" Fixed formatting in the "SSL section"
This commit is contained in:
parent
b5b3586f18
commit
62f539b5c5
|
|
@ -142,11 +142,11 @@ rm -rf /var/cache/pacman/pkg/*
|
||||||
|
|
||||||
### How do I add my own SSL cert?
|
### How do I add my own SSL cert?
|
||||||
- If you have a certificate(**Making a cert falls outside the scope of PIKVM - Please reference Linux documentation**), replace the public key in /etc/kvmd/nginx/ssl/server.crt and private key in /etc/kvmd/nginx/ssl/server.key and restart the kvmd-nginx service.
|
- If you have a certificate(**Making a cert falls outside the scope of PIKVM - Please reference Linux documentation**), replace the public key in /etc/kvmd/nginx/ssl/server.crt and private key in /etc/kvmd/nginx/ssl/server.key and restart the kvmd-nginx service.
|
||||||
- It shoukd look like the following:
|
- It should look like the following:
|
||||||
|
|
||||||
```
|
```
|
||||||
cd /etc/kvmd/nginx
|
cd /etc/kvmd/nginx
|
||||||
[root@pikvm nginx]# cat ssl.conf
|
cat ssl.conf (Expection of what's inside the file)
|
||||||
ssl_protocols TLSv1.3 TLSv1.2 TLSv1.1 TLSv1;
|
ssl_protocols TLSv1.3 TLSv1.2 TLSv1.1 TLSv1;
|
||||||
ssl_ciphers "EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH";
|
ssl_ciphers "EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH";
|
||||||
ssl_certificate /etc/kvmd/nginx/ssl/server.crt;
|
ssl_certificate /etc/kvmd/nginx/ssl/server.crt;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue