Do not install Nginx and Apache by default

This commit is contained in:
Alex Kotov 2020-02-06 20:03:02 +05:00
parent 5161bcdfb5
commit fb293e2724
Signed by: kotovalexarian
GPG Key ID: 553C0EBBEB5D5F08
2 changed files with 4 additions and 2 deletions

View File

@ -8,12 +8,12 @@ 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: install
common__nginx__state: null
common__nginx__remove_default: true
common__nginx__upstreams: []
common__nginx__sites: []
common__apache__state: install
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']

View File

@ -11,3 +11,5 @@
vars:
common__basics__additional_packages: ['libapache2-mod-php']
common__certbot__run: false
common__nginx__state: install
common__apache__state: install