ansible-roles/roles/nginx/tasks/install.yml

11 lines
163 B
YAML
Raw Normal View History

2021-12-01 19:13:34 +01:00
---
2022-03-07 16:00:05 +01:00
- include_tasks: install_openresty.yml
2021-12-01 19:13:34 +01:00
when: nginx_openresty
2022-03-07 16:00:05 +01:00
tags: always
2021-12-01 19:13:34 +01:00
2022-03-07 16:00:05 +01:00
- include_tasks: install_nginx.yml
2021-12-01 19:13:34 +01:00
when: not nginx_openresty
2022-03-07 16:00:05 +01:00
tags: always
2021-12-01 19:13:34 +01:00