mirror of
https://github.com/htrefil/rkvm.git
synced 2025-01-18 10:26:12 +01:00
Clarify example configs
This commit is contained in:
parent
9ff67c0be9
commit
6ae06eeb4e
2 changed files with 16 additions and 6 deletions
|
@ -1,3 +1,8 @@
|
|||
server = "localhost:5258"
|
||||
certificate = "example/certificate.crt"
|
||||
server = "myserver.local:5258"
|
||||
certificate = "/etc/rkvm/certificate.pem"
|
||||
|
||||
# This is to prevent malicious clients from connecting to the server.
|
||||
# Make sure this matches your server's config.
|
||||
#
|
||||
# Change this to your own value before deploying rkvm.
|
||||
password = "123456789"
|
|
@ -1,5 +1,10 @@
|
|||
listen = "0.0.0.0:5258"
|
||||
switch-keys = ["LeftAlt", "LeftCtrl"]
|
||||
certificate = "example/certificate.crt"
|
||||
key = "example/key.pem"
|
||||
certificate = "/etc/rkvm/certificate.crt"
|
||||
key = "/etc/rkvm/key.pem"
|
||||
|
||||
# This is to prevent malicious clients from connecting to the server.
|
||||
# Make sure this matches your client's config.
|
||||
#
|
||||
# Change this to your own value before deploying rkvm.
|
||||
password = "123456789"
|
Loading…
Reference in a new issue