ansible-roles/boost-proxy/tasks/main.yml
Jérémy Lecour c28cb1ee72
All checks were successful
gitea/ansible-roles/pipeline/head This commit looks good
boost-proxy: custom error pages are optional
2022-11-27 00:35:49 +01:00

49 lines
775 B
YAML

---
#######################
# System configuration
#######################
# Merge variables from group_vars and host_vars
- set_fact:
boost_sites_enabled: "{{ boost_sites_enabled_for_all | union(boost_sites_enabled_for_group) | union(boost_sites_enabled_for_host) | unique }}"
tags: always
- debug:
var: boost_sites_enabled
tags: always
- include: haproxy.yml
- include: sshd.yml
- include: sysctl.yml
######################
# Sites configuration
######################
- import_tasks: sites.yml
#################
# external roles
#################
- import_role:
name: haproxy
- import_role:
name: varnish
- import_role:
name: nginx
- import_role:
name: certbot
##############
# validations
##############
- include: validate.yml