rustdesk-server/spk/WIZARD_UIFILES/install_uifile

42 lines
1.3 KiB
Plaintext
Raw Normal View History

2021-04-03 23:52:29 +08:00
[{
"step_title": "Install Settings",
"items": [{
"type": "textfield",
2021-04-04 01:44:14 +08:00
"desc": "Listening Ports",
2021-04-03 23:52:29 +08:00
"subitems": [{
2021-04-04 01:44:14 +08:00
"key": "hbbs_port",
"desc": "RustDesk ID Server Port",
"defaultValue": "21116",
2021-04-03 23:52:29 +08:00
"validator": {
"allowBlank": false,
"regex": {
"expr": "/^([0-9]{1,4}|[1-5][0-9]{4}|6[0-4][0-9]{3}|65[0-4][0-9]{2}|655[0-2][0-9]|6553[0-5])$/",
2021-04-04 01:44:14 +08:00
"errorText": "Digit number only"
2021-04-03 23:52:29 +08:00
}
}
2021-04-04 01:44:14 +08:00
}, {
"key": "hbbr_port",
"desc": "RustDesk Relay Server Port",
"defaultValue": "21117",
2021-04-03 23:52:29 +08:00
"validator": {
"allowBlank": false,
"regex": {
"expr": "/^([0-9]{1,4}|[1-5][0-9]{4}|6[0-4][0-9]{3}|65[0-4][0-9]{2}|655[0-2][0-9]|6553[0-5])$/",
2021-04-04 01:44:14 +08:00
"errorText": "Digit number only"
2021-04-03 23:52:29 +08:00
}
}
}]
2021-04-04 01:44:14 +08:00
},{
"type": "textfield",
"desc": "Only allow the client with the same key",
"subitems": [{
"key": "key",
"desc": "Key",
"defaultValue": "21117",
"validator": {
"allowBlank": True,
}
2021-04-03 23:52:29 +08:00
}]
2021-04-04 01:44:14 +08:00
}]
}]