roles/zabbix-server: Deploy Zabbix server, web UI

The *zabbix-server* role deploys the Zabbix server database, daemon, and
web interface. It requires the *apache* role to configure Apache HTTPD
to serve the web UI.
This commit is contained in:
2018-04-14 15:26:54 -05:00
parent afe4fb7eff
commit 3a7c9b52bf
10 changed files with 874 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
# vim: set ft=apache :
# Automatically redirect requests for / to /zabbix/
{% if zabbix_web_redir|bool %}
RedirectMatch 301 ^/$ /zabbix/
{% endif %}