15 lines
431 B
YAML
15 lines
431 B
YAML
---
|
|
|
|
- name: Apache2 Install
|
|
ansible.builtin.include_tasks: httpd_install.yml
|
|
- name: Apache2 Default Config
|
|
ansible.builtin.include_tasks: httpd_default_config.yml
|
|
- name: Certbot TLS
|
|
when: httpd_tls_certbot
|
|
ansible.builtin.include_tasks: httpd_certbot_tls.yml
|
|
- name: PHP Application
|
|
when: httpd_php
|
|
ansible.builtin.include_tasks: php.yml
|
|
- name: TLS Enabled Site
|
|
ansible.builtin.include_tasks: httpd_vhost_tls.yml
|