mirror of
https://github.com/geerlingguy/ansible-role-apache
synced 2025-01-10 20:00:18 +01:00
19 lines
499 B
Text
19 lines
499 B
Text
---
|
|
# Variables for the HAproxy configuration
|
|
|
|
# HAProxy supports "http" and "tcp". For SSL, SMTP, etc, use "tcp".
|
|
mode: http
|
|
|
|
# Port on which HAProxy should listen
|
|
listenport: 8888
|
|
|
|
# A name for the proxy daemon, this wil be the suffix in the logs.
|
|
daemonname: myapplb
|
|
|
|
# Balancing Algorithm. Available options:
|
|
# roundrobin, source, leastconn, source, uri
|
|
# (if persistance is required use, "source")
|
|
balance: roundrobin
|
|
|
|
# Ethernet interface on which the load balancer should listen
|
|
iface: eth0
|