ansible/roles/nginx/tasks/install.yml

13 lines
222 B
YAML
Raw Normal View History

2021-01-09 17:54:42 +00:00
---
- block:
- name: installing nginx
package:
name:
- nginx
- nginx-mod-stream
2021-01-09 17:54:42 +00:00
state: present
notify: start nginx
register: install_nginx_result
tags:
- nginx-install