common/defaults/main.yml

30 lines
1.0 KiB
YAML

---
common__basics__additional_packages: []
common__iptables__state: install
common__iptables__drop_by_default: false
common__iptables__allow_output_ifaces: []
common__iptables__v4_filter_prepend: null
common__iptables__v4_filter_append: null
common__iptables__v6_filter_prepend: null
common__iptables__v6_filter_append: null
common__certbot__state: install
common__certbot__run: true
common__certbot__email: 'user@example.com'
common__certbot__cert_name: 'example.com'
common__certbot__cert_domains: ['example.com', 'www.example.com']
common__certbot__post_hook: 'systemctl is-active nginx.service || systemctl start nginx.service'
common__certbot__pre_hook: 'systemctl is-active nginx.service && systemctl stop nginx.service || true'
common__nginx__state: null
common__nginx__remove_default: true
common__nginx__upstreams: []
common__nginx__sites: []
common__apache__state: null
common__apache__remove_default: true
common__apache__listen: ['127.0.0.1:8080']
common__apache__modules: ['alias', 'cgid', 'env', 'rewrite', 'ssl']
common__apache__sites: []