mirror of
https://github.com/iiab/iiab.git
synced 2025-02-13 19:52:06 +00:00
19 lines
501 B
YAML
19 lines
501 B
YAML
- name: Create home directory
|
|
file:
|
|
path: "{{ doc_root }}/home"
|
|
owner: "{{ apache_user }}"
|
|
group: "{{ apache_user }}"
|
|
mode: 0755
|
|
state: directory
|
|
|
|
- name: Install admin homepage into apache2
|
|
template:
|
|
src: iiab-homepage.conf
|
|
dest: "/etc/{{ apache_config_dir }}/iiab-homepage.conf"
|
|
|
|
- name: Enable the home page
|
|
file:
|
|
src: "/etc/{{ apache_config_dir }}/iiab-homepage.conf"
|
|
dest: /etc/apache2/sites-enabled/iiab-homepage.conf
|
|
state: link
|
|
when: is_debuntu
|