ansible-pet/1/roles/nginx/tasks/main.yml

14 lines
214 B
YAML
Raw Normal View History

2021-02-25 15:49:59 +03:00
---
- name: Install nginx package
apt:
name: nginx
state: present
- name: Install certbot package
apt:
name: '{{ item }}'
state: present
with_items:
- certbot
- python3-certbot-nginx