12345678910111213141516171819202122 |
- ---
- haproxy_frontend_port: 80
- haproxy_frontends:
- - name: main
- binds:
- - "*:80"
- default_backend: default
- haproxy_backends:
- - name: default
- balance: roundrobin
- servers:
- - name: web01
- address: 127.0.0.1:9000
- opts: check
- os_firewall_allow:
- - service: haproxy stats
- port: "9000/tcp"
- - service: haproxy balance
- port: "{{ haproxy_frontend_port }}/tcp"
|