diff --git a/roles/lb-front/tasks/main.yml b/roles/lb-front/tasks/main.yml index ba3692d..9b29b92 100644 --- a/roles/lb-front/tasks/main.yml +++ b/roles/lb-front/tasks/main.yml @@ -1,11 +1,25 @@ ---- - - name: Installation d'HAproxy - apt: pkg=haproxy state=present update_cache=yes +- name: install haproxy + apt: + name: haproxy + state: present - - name: Fichier de configuration - copy: src=haproxy.cfg dest=/etc/haproxy/haproxy.cfg - notify: - - restart haproxy +- name: parametre backend et fontend + blockinfile: + path: /etc/haproxy/haproxy.cfg + block: | + frontend proxypublic + bind 192.168.56.2:80 + default_backend fermeweb + + backend fermeweb + balance roundrobin + option httpclose + #option httpchk HEAD / HTTP/1.0 + server web1.test 192.168.56.3:80 check + #server web2.test 192.168.56.4:80 check - - name: Copie de goss - copy: src=goss.yaml dest=/root +- name: redemarre haproxy + service: + name: haproxy + state: restarted + enabled: yes