Variabilisation des certificats supplémentaires
This commit is contained in:
parent
1749a00e25
commit
526d78de11
1 changed files with 6 additions and 4 deletions
|
@ -200,7 +200,8 @@
|
|||
mode: u=rw,g=r,o=r
|
||||
owner: root
|
||||
group: root
|
||||
with_items: "{{ reverse_proxy_additional_certificates }}"
|
||||
with_items:
|
||||
- "{{ reverse_proxy_additional_certificates }}"
|
||||
notify:
|
||||
- restart apache2
|
||||
|
||||
|
@ -213,7 +214,8 @@
|
|||
mode: u=rw,g=r,o=
|
||||
owner: root
|
||||
group: root
|
||||
with_items: "{{ reverse_proxy_additional_certificates }}"
|
||||
with_items:
|
||||
- "{{ reverse_proxy_additional_certificates }}"
|
||||
notify:
|
||||
- restart apache2
|
||||
|
||||
|
@ -221,7 +223,8 @@
|
|||
template:
|
||||
src: "cert_template.conf"
|
||||
dest: /etc/apache2/certs-conf/cert_{{ item.name }}.conf
|
||||
with_items: "{{ reverse_proxy_additional_certificates }}"
|
||||
with_items:
|
||||
- "{{ reverse_proxy_additional_certificates }}"
|
||||
notify:
|
||||
- restart apache2
|
||||
|
||||
|
@ -229,4 +232,3 @@
|
|||
- name: install - active apache2
|
||||
tags: install
|
||||
service: name=apache2 state=started enabled=yes
|
||||
|
||||
|
|
Loading…
Reference in a new issue