2018-10-16 20:52:04 +02:00
|
|
|
---
|
|
|
|
- name: "(Setup: All OSs) Register NGINX configuration"
|
|
|
|
command: nginx -T
|
|
|
|
changed_when: false
|
|
|
|
register: nginx_configuration
|
|
|
|
|
|
|
|
- name: "(Setup: All OSs) Print NGINX configuration"
|
|
|
|
debug:
|
2019-05-21 17:23:06 +02:00
|
|
|
var: nginx_configuration.stdout_lines
|