18 lines
489 B
YAML
18 lines
489 B
YAML
---
|
|
- name: Include Nginx installation and configuration tasks
|
|
ansible.builtin.include_tasks:
|
|
file: install_nginx.yml
|
|
|
|
- name: Include Certbot installation and configuration tasks
|
|
ansible.builtin.include_tasks:
|
|
file: install_certbot.yml
|
|
|
|
- name: Include Generate Certs tasks
|
|
ansible.builtin.include_tasks:
|
|
file: generate_certs.yml
|
|
|
|
- name: Include Create Vhosts tasks
|
|
ansible.builtin.include_tasks:
|
|
file: create_vhosts.yml
|
|
when: bool_create_vhost | default(true)
|