blob: 348ea529d1b1d80f2224b84d96339175ef4802ab (
plain) (
tree)
|
|
- name: retrieve all configuration files
ansible.builtin.find:
path: "{{ httpd_configuration_dir }}"
patterns: "*.conf"
register: configuration_files
- name: generate httpd configuration
ansible.builtin.template:
src: httpd.conf.j2
dest: "{{ httpd_configuration_file }}"
owner: 0
group: 0
mode: 0644
- name: enable and restart httpd
ansible.builtin.service:
name: httpd
state: restarted
enabled: true
|