browbeat/ansible/install/roles/collectd-openstack/templates/00-browbeat_mod_status.conf.j2
akrzos 95b3520f78 Some Pike support to Browbeat Playbooks.
* Remove Shaker check as it can cause a conflict with heat ports
  when heat is containerized
* Check for selinux on several tasks
* Acount for novacompute-X naming in total memory dashboard

Change-Id: I8d0330aaf2087d5202fc9c0fc5f44d455af79fca
2017-08-03 18:53:22 +00:00

26 lines
651 B
Django/Jinja

# Installed by Browbeat Ansible Installer
LoadModule status_module modules/mod_status.so
{% if 'undercloud' in group_names %}
Listen {{apache_undercloud_mod_status_port}}
{% endif %}
{% if 'controller' in group_names %}
Listen {{apache_controller_mod_status_port}}
{% endif %}
ExtendedStatus on
{% if 'undercloud' in group_names %}
<VirtualHost *:{{apache_undercloud_mod_status_port}}>
{% endif %}
{% if 'controller' in group_names %}
<VirtualHost *:{{apache_controller_mod_status_port}}>
{% endif %}
<Location /mod_status>
SetHandler server-status
Order deny,allow
Deny from all
Allow from 127.0.0.1
</Location>
</VirtualHost>