configpolicy/roles/taiga/tasks/main.yml

20 lines
468 B
YAML

- import_tasks: postgresql.yml
- import_tasks: rabbitmq.yml
- import_tasks: taiga-back.yml
- import_tasks: taiga-front.yml
- import_tasks: taiga-events.yml
- name: ensure apache is configured to serve taiga
copy:
src: taiga.httpd.conf
dest: /etc/httpd/conf.d/taiga.conf
mode: '0644'
notify:
- reload httpd
- name: ensure selinux allows apache to proxy for taiga
seboolean:
name: httpd_can_network_connect
state: true
persistent: true