main.yml 371 B

12345678910111213141516171819202122
  1. ---
  2. haproxy_frontend_port: 80
  3. haproxy_frontends:
  4. - name: main
  5. binds:
  6. - "*:80"
  7. default_backend: default
  8. haproxy_backends:
  9. - name: default
  10. balance: roundrobin
  11. servers:
  12. - name: web01
  13. address: 127.0.0.1:9000
  14. opts: check
  15. os_firewall_allow:
  16. - service: haproxy stats
  17. port: "9000/tcp"
  18. - service: haproxy balance
  19. port: "{{ haproxy_frontend_port }}/tcp"