1
0

question.yaml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. name: Question
  2. description: Ask how to do something with 3x-ui
  3. title: "[Question]: "
  4. labels: ["question"]
  5. body:
  6. - type: markdown
  7. attributes:
  8. value: |
  9. Before opening a question, please:
  10. - Read the [project Wiki](https://github.com/MHSanaei/3x-ui/wiki) —
  11. most setup, install, and "how do I …" answers live there.
  12. - Search [existing issues](../issues?q=is%3Aissue) — the question
  13. may already have been asked.
  14. Use this template only when you have a usage question that the docs
  15. and previous issues don't answer. If you found something **broken**,
  16. open a Bug report instead.
  17. - type: textarea
  18. id: question
  19. attributes:
  20. label: What are you trying to do?
  21. description: Describe the goal, not just the symptom. The clearer the goal, the better the answer.
  22. placeholder: |
  23. I'm trying to … so that …
  24. I expected the panel to … but I'm not sure how to configure it.
  25. validations:
  26. required: true
  27. - type: textarea
  28. id: tried
  29. attributes:
  30. label: What have you already tried?
  31. description: Pages of the Wiki you read, settings you toggled, commands you ran.
  32. placeholder: |
  33. - Read the `Reverse Proxy` page of the Wiki
  34. - Tried setting `xrayBasePath` to `/proxy` — got 404
  35. validations:
  36. required: false
  37. - type: input
  38. id: xui-version
  39. attributes:
  40. label: 3x-ui version
  41. description: Shown at the top of the panel sidebar.
  42. placeholder: 3.1.0
  43. validations:
  44. required: true
  45. - type: dropdown
  46. id: install-method
  47. attributes:
  48. label: How did you install 3x-ui?
  49. options:
  50. - install.sh script
  51. - Docker / Docker Compose
  52. - Manual build from source
  53. - Other
  54. validations:
  55. required: true
  56. - type: input
  57. id: os
  58. attributes:
  59. label: Operating system
  60. placeholder: Ubuntu 24.04 / Debian 12 / CentOS Stream 9 …
  61. validations:
  62. required: false
  63. - type: textarea
  64. id: screenshots
  65. attributes:
  66. label: Screenshots or config snippets
  67. description: Drag images or paste relevant config. Redact tokens, real domains, client UUIDs.
  68. validations:
  69. required: false
  70. - type: checkboxes
  71. id: checklist
  72. attributes:
  73. label: Before submitting
  74. options:
  75. - label: I read the [Wiki](https://github.com/MHSanaei/3x-ui/wiki) and searched [existing issues](../issues?q=is%3Aissue).
  76. required: true
  77. - label: This is a usage question, not a bug report.
  78. required: true
  79. - label: This question is written in English.
  80. required: true