2020-09-15 21:27:06 +02:00
|
|
|
---
|
|
|
|
- name: "(Alpine Linux) Configure NGINX repository"
|
|
|
|
lineinfile:
|
|
|
|
path: /etc/apk/repositories
|
|
|
|
insertafter: EOF
|
|
|
|
line: "{{ repository }}"
|
|
|
|
|
|
|
|
- name: "(Alpine Linux) Install NGINX"
|
|
|
|
apk:
|
|
|
|
name: "nginx{{ nginx_version | default('') }}"
|
|
|
|
repository: "{{ repository }}"
|
|
|
|
state: "{{ nginx_state }}"
|
|
|
|
update_cache: yes
|
2020-09-17 17:00:27 +02:00
|
|
|
notify: "(Handler) Run NGINX"
|