2
0

ex variables: mise au point

This commit is contained in:
2020-05-07 10:27:36 +02:00
parent 571d33cc58
commit 3440a5ec26
8 changed files with 28 additions and 28 deletions

View File

@@ -19,7 +19,7 @@
notify: reload httpd
template:
src: vhost.conf.jj
dest: /etc/httpd/conf.d/vhost_{{ servername }}.conf
dest: /etc/httpd/conf.d/vhost_{{ apache_servername }}.conf
mode: 0640
owner: root
group: apache
@@ -40,11 +40,11 @@
- name: create documentroot
file:
name: "{{ documentroot }}"
name: "{{ apache_documentroot }}"
state: directory
- name: create index file
template:
src: index.html
dest: "{{ documentroot }}/index.html"
dest: "{{ apache_documentroot }}/index.html"
mode: 0644