common/defaults/main.yml

30 lines
1.0 KiB
YAML
Raw Normal View History

2020-01-14 06:59:13 +00:00
---
2020-01-21 13:13:41 +00:00
common__basics__additional_packages: []
common__iptables__state: install
2020-07-13 11:57:00 +00:00
common__iptables__drop_by_default: false
common__iptables__allow_output_ifaces: []
2021-07-08 16:47:40 +00:00
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
2020-01-14 10:55:56 +00:00
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'
2020-01-14 10:55:56 +00:00
common__nginx__state: null
2020-01-14 10:23:21 +00:00
common__nginx__remove_default: true
common__nginx__upstreams: []
common__nginx__sites: []
2020-01-20 18:00:02 +00:00
common__apache__state: null
2020-01-20 18:00:02 +00:00
common__apache__remove_default: true
2020-01-22 22:29:47 +00:00
common__apache__listen: ['127.0.0.1:8080']
2020-01-24 23:14:00 +00:00
common__apache__modules: ['alias', 'cgid', 'env', 'rewrite', 'ssl']
2020-01-21 11:48:55 +00:00
common__apache__sites: []