2019-08-03 12:53:21 +02:00
|
|
|
---
|
|
|
|
- name: Converge
|
|
|
|
hosts: all
|
2019-11-03 15:07:38 +01:00
|
|
|
pre_tasks:
|
2020-08-19 18:39:17 +02:00
|
|
|
- name: Set repo if Alpine
|
2019-11-22 15:52:34 +01:00
|
|
|
set_fact:
|
2021-03-24 23:28:52 +01:00
|
|
|
version: "=1.19.8-r1"
|
2020-09-15 21:27:06 +02:00
|
|
|
when: ansible_facts['os_family'] == "Alpine"
|
2020-08-19 18:39:17 +02:00
|
|
|
- name: Set repo if Debian
|
2019-11-03 15:07:38 +01:00
|
|
|
set_fact:
|
2021-03-24 23:28:52 +01:00
|
|
|
version: "=1.19.8-1~{{ ansible_facts['distribution_release'] }}"
|
2020-09-15 21:27:06 +02:00
|
|
|
when: ansible_facts['os_family'] == "Debian"
|
|
|
|
- name: Set repo if Red Hat
|
2019-11-03 15:07:38 +01:00
|
|
|
set_fact:
|
2021-03-24 23:28:52 +01:00
|
|
|
version: "-1.19.8-1.el{{ ansible_facts['distribution_major_version'] }}.ngx"
|
2020-09-15 21:27:06 +02:00
|
|
|
when: ansible_facts['os_family'] == "RedHat"
|
2020-08-19 18:39:17 +02:00
|
|
|
- name: Enable NGINX @CentOS-AppStream dnf modules
|
2020-06-18 14:34:51 +02:00
|
|
|
shell:
|
|
|
|
args:
|
2020-06-22 20:54:29 +02:00
|
|
|
cmd: dnf module info nginx | grep -q 'Stream.*\[e\]' && echo -n ENABLED || dnf module enable -y nginx # noqa 204 303
|
2020-06-18 14:34:51 +02:00
|
|
|
register: dnf_module_enable
|
|
|
|
changed_when: dnf_module_enable.stdout != 'ENABLED'
|
2020-09-15 21:27:06 +02:00
|
|
|
when: ansible_facts['os_family'] == "RedHat" and ansible_facts['distribution_major_version'] is version('8', '==')
|
2020-08-19 18:39:17 +02:00
|
|
|
tasks:
|
|
|
|
- name: Install NGINX
|
|
|
|
include_role:
|
|
|
|
name: ansible-role-nginx
|
|
|
|
vars:
|
|
|
|
nginx_debug_output: true
|
|
|
|
nginx_selinux: true
|
|
|
|
nginx_selinux_tcp_ports:
|
|
|
|
- 80
|
|
|
|
- 443
|
|
|
|
nginx_version: "{{ version }}"
|
|
|
|
nginx_configure: false
|
|
|
|
nginx_logrotate_conf_enable: true
|
|
|
|
nginx_logrotate_conf:
|
|
|
|
paths:
|
2020-09-19 17:32:17 +02:00
|
|
|
- /var/log/nginx/*.log
|
2020-08-19 18:39:17 +02:00
|
|
|
options:
|
|
|
|
- daily
|
|
|
|
- missingok
|
|
|
|
- rotate 14
|
|
|
|
- compress
|
|
|
|
- delaycompress
|
|
|
|
- notifempty
|
|
|
|
- sharedscripts
|