mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-04-26 19:42:55 +08:00
22 lines
605 B
YAML
22 lines
605 B
YAML
- name: Make directory for the config files for {{website}} we are about to copy
|
|
file: path=/etc/httpd/conf.d/{{website}} state=directory owner=root group=root mode=0755
|
|
tags:
|
|
- haproxy
|
|
- haproxy/rewrite
|
|
|
|
- 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')
|