Fix error

This commit is contained in:
Alex Kotov 2020-01-23 03:29:47 +05:00
parent 3b9f157fdb
commit f224fe7b8d
Signed by: kotovalexarian
GPG Key ID: 553C0EBBEB5D5F08
2 changed files with 3 additions and 3 deletions

View File

@ -13,6 +13,6 @@ common__nginx__upstreams: []
common__nginx__sites: [] common__nginx__sites: []
common__apache__remove_default: true common__apache__remove_default: true
common__apache__ports: [] common__apache__listen: ['127.0.0.1:8080']
common__apache__modules: ['rewrite', 'ssl'] common__apache__modules: ['rewrite', 'ssl']
common__apache__sites: [] common__apache__sites: []

View File

@ -1,3 +1,3 @@
{% for port in common__apache__ports %} {% for listen in common__apache__listen %}
Listen {{ port }} Listen {{ listen }}
{% endfor %} {% endfor %}