mirror of
https://github.com/geerlingguy/ansible-role-apache
synced 2024-11-06 06:03:29 +01:00
2597e7380c
PR #24: Allow default vhost file to be removed on Debian/Ubuntu.
47 lines
1.4 KiB
YAML
47 lines
1.4 KiB
YAML
---
|
|
- name: Configure Apache.
|
|
lineinfile:
|
|
dest: "{{ apache_server_root }}/ports.conf"
|
|
regexp: "{{ item.regexp }}"
|
|
line: "{{ item.line }}"
|
|
state: present
|
|
with_items: apache_ports_configuration_items
|
|
notify: restart apache
|
|
|
|
- name: Enable Apache mods.
|
|
file:
|
|
src: "{{ apache_server_root }}/mods-available/{{ item }}"
|
|
dest: "{{ apache_server_root }}/mods-enabled/{{ item }}"
|
|
state: link
|
|
with_items: apache_mods_enabled
|
|
notify: restart apache
|
|
|
|
- name: Disable Apache mods.
|
|
file:
|
|
path: "{{ apache_server_root }}/mods-enabled/{{ item }}"
|
|
state: absent
|
|
with_items: apache_mods_disabled
|
|
notify: restart apache
|
|
|
|
- name: Add apache vhosts configuration.
|
|
template:
|
|
src: "vhosts-{{ apache_vhosts_version }}.conf.j2"
|
|
dest: "{{ apache_conf_path }}/sites-available/{{ apache_vhosts_filename }}"
|
|
owner: root
|
|
group: root
|
|
mode: 0644
|
|
notify: restart apache
|
|
when: apache_create_vhosts
|
|
|
|
- name: Add vhost symlink in sites-enabled.
|
|
file:
|
|
src: "{{ apache_conf_path }}/sites-available/{{ apache_vhosts_filename }}"
|
|
dest: "{{ apache_conf_path }}/sites-enabled/{{ apache_vhosts_filename }}"
|
|
state: link
|
|
when: apache_create_vhosts
|
|
|
|
- name: Remove default vhost symlink in sites-enabled.
|
|
file:
|
|
path: "{{ apache_conf_path }}/sites-enabled/{{ apache_default_vhost_filename }}"
|
|
state: absent
|
|
when: apache_remove_default_vhost
|