nginx/tasks/setup-Archlinux.yml

11 lines
219 B
YAML
Raw Normal View History

2019-04-14 13:51:48 +00:00
---
- name: Ensure nginx is installed.
pacman:
name: "{{ nginx_package_name }}"
state: present
2019-04-15 18:14:30 +00:00
- name: ensure conf.d exist
file:
path: "{{ nginx_conf_path }}"
state: directory
notify: reload nginx