manifest.toml 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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 = "7.4~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 = ">= 12.0.0"
  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.apt]
  54. packages = [
  55. "php8.2-fpm",
  56. "php8.2-gd",
  57. "php8.2-bcmath",
  58. "php8.2-ctype",
  59. "php8.2-xml",
  60. "php8.2-mbstring",
  61. "php8.2-gettext",
  62. "php8.2-curl",
  63. "php8.2-ldap",
  64. "mariadb-server",
  65. "python3-venv",
  66. ]
  67. [resources.apt.extras.zabbix]
  68. repo = "deb https://repo.zabbix.com/zabbix/7.4/stable/debian __YNH_DEBIAN_VERSION__ main"
  69. key = "https://repo.zabbix.com/zabbix-official-repo.key"
  70. packages = [
  71. "zabbix-server-mysql",
  72. "zabbix-frontend-php",
  73. "zabbix-sql-scripts",
  74. "zabbix-agent",
  75. ]
  76. [resources.database]
  77. # This will automatically provision/deprovison a DB and store the corresponding credentials in settings $db_user, $db_name, $db_pwd
  78. type = "mysql"