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.
7 lines
150 B
Django/Jinja
7 lines
150 B
Django/Jinja
# vim: set ft=apache :
|
|
|
|
# Automatically redirect requests for / to /zabbix/
|
|
{% if zabbix_web_redir|bool %}
|
|
RedirectMatch 301 ^/$ /zabbix/
|
|
{% endif %}
|