common/defaults/main.yml

24 lines
744 B
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
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']
2020-02-13 12:51:04 +00:00
common__certbot__post_hook: 'systemctl start nginx.service || true'
common__certbot__pre_hook: '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: []