Files
fedora-infra_ansible/roles/haproxy/rewrite/tasks/main.yml
2016-12-01 22:29:34 +00:00

16 lines
392 B
YAML

- template: src=rewrite.conf dest=/etc/httpd/conf.d/{{website}}/haproxy.conf
notify:
- reload httpd
tags:
- haproxy
- haproxy/rewrite
when: not inventory_hostname.startswith('proxy')
- template: src=rewrite.conf dest=/etc/httpd/conf.d/{{website}}/haproxy.conf
notify:
- reload proxyhttpd
tags:
- haproxy
- haproxy/rewrite
when: inventory_hostname.startswith('proxy')