manifest.toml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. #:schema https://raw.githubusercontent.com/YunoHost/apps/master/schemas/manifest.v2.schema.json
  2. packaging_format = 2
  3. id = "zabbix"
  4. name = "Zabbix"
  5. description.en = "Monitoring tool for diverse IT components, including networks, servers, VMs and cloud services"
  6. description.fr = "Outil pour monitorer des réseaux, des serveurs, des VMs et autres services en ligne"
  7. version = "6.0~ynh1"
  8. maintainers = []
  9. [upstream]
  10. license = "GPL-2.0-or-later"
  11. website = "https://www.zabbix.com"
  12. admindoc = "https://www.zabbix.com/manuals"
  13. code = "https://github.com/zabbix/zabbix"
  14. cpe = "cpe:2.3:a:zabbix:zabbix"
  15. [integration]
  16. yunohost = ">= 11.2.30"
  17. architectures = ["amd64"]
  18. multi_instance = false
  19. ldap = true
  20. sso = true
  21. disk = "500M"
  22. ram.build = "200M"
  23. ram.runtime = "200M"
  24. [install]
  25. [install.domain]
  26. type = "domain"
  27. [install.path]
  28. type = "path"
  29. default = "/zabbix"
  30. [install.init_main_permission]
  31. help.en = "A public app doesn't need SSO auth: the auth page is opened for everyone"
  32. help.fr = "Une application publique ne nécessite pas une authentification SSO : sa page d'authentication est ouverte à tous"
  33. type = "group"
  34. default = "visitors"
  35. [install.language]
  36. ask.en = "Choose the application language"
  37. ask.fr = "Choisissez la langue de l'application"
  38. type = "select"
  39. choices = ["en_GB", "en_US", "cz_CN", "cs_CZ", "fr_FR", "ko_KR", "ja_JP", "nb_NO", "pl_PL", "pt_BR", "pt_PT", "ru_RU", "sk_SK", "tr_TR", "uk_UA"]
  40. default = "en_US"
  41. [install.admin]
  42. type = "user"
  43. [resources]
  44. [resources.system_user]
  45. # This will provision/deprovision a unix system user
  46. [resources.install_dir]
  47. # This will create/remove the install dir as /var/www/$app
  48. # and store the corresponding setting $install_dir
  49. [resources.permissions]
  50. # This will configure SSOwat permission for $domain/$path/
  51. # The initial allowed group of user is configured via the init_main_permission question (public=visitors, private=all_users)
  52. main.url = "/"
  53. [resources.ports]
  54. active-checks.default = 10051
  55. [resources.apt]
  56. packages = [
  57. "php8.2-fpm",
  58. "mariadb-server",
  59. "python3-venv",
  60. ]
  61. [resources.apt.extras.zabbix]
  62. repo = "deb https://repo.zabbix.com/zabbix/6.0/debian __YNH_DEBIAN_VERSION__ main"
  63. key = "https://repo.zabbix.com/zabbix-official-repo.key"
  64. packages = [
  65. "zabbix-server-mysql",
  66. "zabbix-frontend-php",
  67. "zabbix-sql-scripts",
  68. "zabbix-agent",
  69. ]
  70. [resources.database]
  71. # This will automatically provision/deprovison a DB and store the corresponding credentials in settings $db_user, $db_name, $db_pwd
  72. type = "mysql"