mirror of
https://github.com/htrefil/rkvm.git
synced 2025-01-30 20:34:13 +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"
|
server = "myserver.local:5258"
|
||||||
certificate = "example/certificate.crt"
|
certificate = "/etc/rkvm/certificate.pem"
|
||||||
password = "123456789"
|
|
||||||
|
# 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"
|
listen = "0.0.0.0:5258"
|
||||||
switch-keys = ["LeftAlt", "LeftCtrl"]
|
switch-keys = ["LeftAlt", "LeftCtrl"]
|
||||||
certificate = "example/certificate.crt"
|
certificate = "/etc/rkvm/certificate.crt"
|
||||||
key = "example/key.pem"
|
key = "/etc/rkvm/key.pem"
|
||||||
password = "123456789"
|
|
||||||
|
# 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…
Add table
Reference in a new issue