devops-coop / ansible-haproxy

Installs and configure HAProxy
Apache License 2.0
96 stars 97 forks source link

allow to access the stats page on a dedicated ip and/or port #61

Closed fw8 closed 7 years ago

fw8 commented 7 years ago

enable the creation of a dedicated stats-page as follows:

haproxy_listen:

  - name: stats
    bind:
      - ':8888'
    description: stats for site
    stats:
      enabled: true
      uri: /
      realm: Haproxy\ Stats
      auth: admin:secret
      refresh: 5s
fw8 commented 7 years ago

Done