2018-01-10 23:40:01 +01:00
|
|
|
---
|
2018-04-12 19:20:39 +02:00
|
|
|
- name: "(Setup: NGINX Open Source) Enable NGINX Open Source Status"
|
2018-01-10 23:40:01 +01:00
|
|
|
blockinfile:
|
2019-11-18 17:14:00 +01:00
|
|
|
path: "{{ nginx_status_location }}"
|
2018-01-10 23:40:01 +01:00
|
|
|
create: yes
|
|
|
|
block: |
|
|
|
|
server {
|
2019-11-18 17:14:00 +01:00
|
|
|
listen 127.0.0.1:{{ nginx_status_port | default('80') }};
|
2018-01-19 19:27:47 +01:00
|
|
|
location /nginx_status {
|
|
|
|
stub_status on;
|
2020-06-23 17:48:43 +02:00
|
|
|
access_log {{ nginx_status_log | ternary("on", "off") }};
|
2018-01-19 19:27:47 +01:00
|
|
|
allow 127.0.0.1;
|
|
|
|
deny all;
|
|
|
|
}
|
2018-01-10 23:40:01 +01:00
|
|
|
}
|
2018-09-15 01:28:20 +02:00
|
|
|
when: nginx_type == "opensource"
|
2018-01-26 20:00:26 +01:00
|
|
|
notify: "(Handler: All OSs) Reload NGINX"
|
2018-01-10 23:40:01 +01:00
|
|
|
|
2018-01-26 20:00:26 +01:00
|
|
|
- name: "(Setup: NGINX Plus) Enable NGINX Plus Status"
|
2018-01-10 23:40:01 +01:00
|
|
|
blockinfile:
|
2019-11-18 17:14:00 +01:00
|
|
|
path: "{{ nginx_status_location }}"
|
2018-01-10 23:40:01 +01:00
|
|
|
create: yes
|
|
|
|
block: |
|
|
|
|
server {
|
2019-11-18 17:14:00 +01:00
|
|
|
listen 127.0.0.1:{{ nginx_status_port | default('80') }};
|
2018-01-19 19:27:47 +01:00
|
|
|
location /status {
|
|
|
|
status;
|
2020-06-23 17:48:43 +02:00
|
|
|
access_log {{ nginx_status_log | ternary("on", "off") }};
|
2018-01-19 19:27:47 +01:00
|
|
|
allow 127.0.0.1;
|
|
|
|
deny all;
|
|
|
|
}
|
2018-01-10 23:40:01 +01:00
|
|
|
}
|
2018-09-15 01:28:20 +02:00
|
|
|
when: nginx_type == "plus"
|
2018-01-26 20:00:26 +01:00
|
|
|
notify: "(Handler: All OSs) Reload NGINX"
|