| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- #:schema https://raw.githubusercontent.com/YunoHost/apps/master/schemas/manifest.v2.schema.json
- packaging_format = 2
- id = "zabbix"
- name = "Zabbix"
- description.en = "Monitoring tool for diverse IT components, including networks, servers, VMs and cloud services"
- description.fr = "Outil pour monitorer des réseaux, des serveurs, des VMs et autres services en ligne"
- version = "6.4~ynh1"
- maintainers = []
- [upstream]
- license = "GPL-2.0-or-later"
- website = "https://www.zabbix.com"
- admindoc = "https://www.zabbix.com/manuals"
- code = "https://github.com/zabbix/zabbix"
- cpe = "cpe:2.3:a:zabbix:zabbix"
- [integration]
- yunohost = ">= 11.2.30"
- architectures = ["amd64"]
- multi_instance = false
- ldap = true
- sso = true
- disk = "500M"
- ram.build = "200M"
- ram.runtime = "200M"
- [install]
- [install.domain]
- type = "domain"
- [install.path]
- type = "path"
- default = "/zabbix"
- [install.init_main_permission]
- help.en = "A public app doesn't need SSO auth: the auth page is opened for everyone"
- help.fr = "Une application publique ne nécessite pas une authentification SSO : sa page d'authentication est ouverte à tous"
- type = "group"
- default = "visitors"
- [install.language]
- ask.en = "Choose the application language"
- ask.fr = "Choisissez la langue de l'application"
- type = "select"
- 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"]
- default = "en_US"
- [install.admin]
- type = "user"
- [resources]
- [resources.system_user]
- # This will provision/deprovision a unix system user
- [resources.install_dir]
- # This will create/remove the install dir as /var/www/$app
- # and store the corresponding setting $install_dir
- [resources.permissions]
- # This will configure SSOwat permission for $domain/$path/
- # The initial allowed group of user is configured via the init_main_permission question (public=visitors, private=all_users)
- main.url = "/"
- [resources.apt]
- packages = [
- "php8.2-fpm",
- "mariadb-server",
- "python3-venv",
- ]
- [resources.apt.extras.zabbix]
- repo = "deb https://repo.zabbix.com/zabbix/6.4/debian __YNH_DEBIAN_VERSION__ main"
- key = "https://repo.zabbix.com/zabbix-official-repo.key"
- packages = [
- "zabbix-server-mysql",
- "zabbix-frontend-php",
- "zabbix-sql-scripts",
- "zabbix-agent",
- ]
- [resources.database]
- # This will automatically provision/deprovison a DB and store the corresponding credentials in settings $db_user, $db_name, $db_pwd
- type = "mysql"
|