ansible-role-nginx/tasks/conf/setup-status.yml

33 lines
800 B
YAML
Raw Normal View History

2018-01-10 23:40:01 +01:00
---
- name: "(Setup: Open Source NGINX) Enable Open Source NGINX Status"
2018-01-10 23:40:01 +01:00
blockinfile:
path: /etc/nginx/conf.d/stub_status.conf
create: yes
block: |
server {
listen 127.0.0.1:80;
location /nginx_status {
stub_status on;
allow 127.0.0.1;
deny all;
}
2018-01-10 23:40:01 +01:00
}
when: type == "opensource"
notify: "(Handler: All OSs) Reload NGINX"
2018-01-10 23:40:01 +01:00
- name: "(Setup: NGINX Plus) Enable NGINX Plus Status"
2018-01-10 23:40:01 +01:00
blockinfile:
path: /etc/nginx/conf.d/status.conf
create: yes
block: |
server {
listen 127.0.0.1:80;
location /status {
status;
allow 127.0.0.1;
deny all;
}
2018-01-10 23:40:01 +01:00
}
when: type == "plus"
notify: "(Handler: All OSs) Reload NGINX"