Matrix Docker Ansible eploy
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 

55 wiersze
2.1 KiB

  1. {
  2. "name": "Configure Website Access Backup",
  3. "description": "Configure base domain website settings and access the services backup.",
  4. "spec": [
  5. {
  6. "question_name": "Customise Base Domain Website",
  7. "question_description": "Set if you want to adjust the base domain website using SFTP.",
  8. "required": true,
  9. "min": null,
  10. "max": null,
  11. "default": "{{ customise_base_domain_website | string | lower }}",
  12. "choices": "true\nfalse",
  13. "new_question": true,
  14. "variable": "customise_base_domain_website",
  15. "type": "multiplechoice"
  16. },
  17. {
  18. "question_name": "SFTP Authorisation Method",
  19. "question_description": "Set whether you want to disable SFTP, use a password to connect to SFTP or connect with a more secure SSH key.",
  20. "required": true,
  21. "min": null,
  22. "max": null,
  23. "default": "{{ sftp_auth_method | string }}",
  24. "choices": "Disabled\nPassword\nSSH Key",
  25. "new_question": true,
  26. "variable": "sftp_auth_method",
  27. "type": "multiplechoice"
  28. },
  29. {
  30. "question_name": "SFTP Password",
  31. "question_description": "Sets the password of the 'sftp' account, which allows you to upload a multi-file static website by SFTP, as well as export the latest copy of your Matrix service. Must be defined if 'Password' method is selected. WARNING: You must set a strong and unique password here.",
  32. "required": false,
  33. "min": 0,
  34. "max": 64,
  35. "default": "{{ sftp_password }}",
  36. "choices": "",
  37. "new_question": true,
  38. "variable": "sftp_password",
  39. "type": "password"
  40. },
  41. {
  42. "question_name": "SFTP Public SSH Key (More Secure)",
  43. "question_description": "Sets the public SSH key used to access the 'sftp' account, which allows you to upload a multi-file static website by SFTP, as well as export the latest copy of your Matrix service. Must be defined if 'SSH Key' method is selected.",
  44. "required": false,
  45. "min": 0,
  46. "max": 16384,
  47. "default": "{{ sftp_public_key }}",
  48. "choices": "",
  49. "new_question": true,
  50. "variable": "sftp_public_key",
  51. "type": "text"
  52. }
  53. ]
  54. }