ansible-role-nginx/tasks/opensource/install-debian.yml
2020-09-19 17:32:17 +02:00

15 lines
338 B
YAML

---
- name: (Debian/Ubuntu) Configure NGINX repository
apt_repository:
filename: nginx
repo: "{{ item }}"
update_cache: yes
mode: 0644
loop: "{{ repository }}"
- name: (Debian/Ubuntu) Install NGINX
apt:
name: "nginx{{ nginx_version | default('') }}"
state: "{{ nginx_state }}"
notify: (Handler) Run NGINX