Files
fedora-infra_ansible/roles/httpd/proxy/tasks/main.yml

49 lines
1.1 KiB
YAML

- name: Copy in the main httpd.conf file for proxy nodes
copy: >
src=httpd.conf dest=/etc/httpd/conf/httpd.conf
owner=root group=root mode=0644
notify:
- restart httpd
tags:
- httpd
- httpd/proxy
- name: Make sure certain files are gone
file: dest=/etc/httpd/conf.d/{{item}} state=absent
with_items:
- welcome.conf
tags:
- httpd
- httpd/proxy
- name: Copy over some basic configs into /etc/httpd/conf.d/
template: >
src={{item}} dest=/etc/httpd/conf.d/{{item}}
owner=root group=root mode=0644
with_items:
- forwarded.conf
- 00-namevirtualhost.conf
- 01-keepalives.conf
notify:
- restart httpd
tags:
- httpd
- httpd/proxy
- name: Install libsemanage-python so we can manage selinux with python...
yum: name=libsemanage-python state=installed
tags:
- httpd
- httpd/proxy
- selinux
- name: Turn on certain selinux booleans we need for our proxy layer
seboolean: name={{ item }} state=true persistent=true
with_items:
# We need this for httpd to be able to reverseproxy to other machines.
- httpd_can_network_connect
tags:
- httpd
- httpd/proxy
- selinux