21 lines
448 B
YAML
21 lines
448 B
YAML
---
|
|
- name: Create 2px directory
|
|
become: true
|
|
file:
|
|
path: "{{ dir_2px }}"
|
|
owner: "{{ owner_2px }}"
|
|
group: "{{ group_2px }}"
|
|
state: directory
|
|
mode: '0775'
|
|
|
|
- name: Copy vHost conf
|
|
become: true
|
|
template:
|
|
src: 2px.info.conf.j2
|
|
dest: /etc/apache2/sites-available/2px.info.conf
|
|
notify: Reload apache2 service
|
|
|
|
- name: Activate vHost
|
|
become: true
|
|
command: a2ensite 2px.info.conf
|
|
notify: Reload apache2 service
|