Files
openstack-ansible-ops/elk_metrics_6x/roles/elastic_metricbeat/templates/nginx-status.conf.j2
Kevin Carter 326fde4895 Increment nginx check port
In the event that both NGINX and apache are co-existing on the same machine
the status port check for both platforms will be the same, and that will
cause one of the services to not start. This change increments the NGINX
check port to ensure there are no conflicts.

Change-Id: I03d5d351fff2d6926f35ca860c01f5a075de42aa
Signed-off-by: Kevin Carter <kevin@cloudnull.com>
2019-02-14 20:42:56 -06:00

10 lines
168 B
Django/Jinja

server {
listen 127.0.1.1:18182;
location /server-status {
stub_status on;
access_log off;
allow 127.0.0.0/8;
deny all;
}
}