diff --git a/roles/zabbix_web/templates/apache_vhost.conf.j2 b/roles/zabbix_web/templates/apache_vhost.conf.j2 index 44982df6c..5ee97c830 100644 --- a/roles/zabbix_web/templates/apache_vhost.conf.j2 +++ b/roles/zabbix_web/templates/apache_vhost.conf.j2 @@ -79,6 +79,12 @@ SSLRandomSeed connect builtin ## Vhost docroot DocumentRoot "/usr/share/zabbix" +{% if zabbix_apache_custom_includes is iterable and (zabbix_apache_custom_includes | length>0) %} + {% for include in zabbix_apache_custom_includes %} + {{ include }} + {% endfor %} +{% endif %} + SSLEngine on {{ (zabbix_web_ssl_cipher_suite is defined and zabbix_web_ssl_cipher_suite is not none) | ternary('', '# ') }}SSLCipherSuite {{ zabbix_web_ssl_cipher_suite | default('') }} {{ (zabbix_web_ssl_cipher_suite is defined and zabbix_web_ssl_cipher_suite is not none) | ternary('', '# ') }}SSLHonorCipherOrder On