install_uifile 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. [{
  2. "step_title": "Install Settings",
  3. "items": [{
  4. "type": "textfield",
  5. "desc": "RustDesk中继服务器端口",
  6. "subitems": [{
  7. "key": "hbbr_port",
  8. "desc": "TCP",
  9. "defaultValue": "21117",
  10. "validator": {
  11. "allowBlank": false,
  12. "regex": {
  13. "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])$/",
  14. "errorText": "端口号必须为数字"
  15. }
  16. }
  17. }]
  18. }, {
  19. "type": "textfield",
  20. "desc": "RustDesk ID/注册服务器端口",
  21. "subitems": [{
  22. "key": "hbbs_port",
  23. "desc": "ID/注册服务端口TCP/UDP",
  24. "defaultValue": "21116",
  25. "validator": {
  26. "allowBlank": false,
  27. "regex": {
  28. "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])$/",
  29. "errorText": "端口号必须为数字"
  30. }
  31. }
  32. }]
  33. }
  34. }]