infra/roles/nginx-role/tasks/setup-FreeBSD.yml
Sergey Bubnov (omg) 8dc65328a3 new nginx role
2019-06-29 01:27:16 +04:00

15 lines
272 B
YAML

---
- name: Update pkg cache.
command: pkg update -f
tags: ['skip_ansible_lint']
- name: Ensure nginx is installed.
pkgng:
name: "{{ nginx_package_name }}"
state: present
- name: Create logs directory.
file:
path: /var/log/nginx
state: directory