mirror of
https://github.com/geerlingguy/ansible-role-apache
synced 2025-01-11 04:10:17 +01:00
17 lines
389 B
Text
17 lines
389 B
Text
|
---
|
||
|
# File for the HAproxy configuration
|
||
|
|
||
|
#Supports http and tcp, for ssl smtp etc.. use tcp
|
||
|
mode: http
|
||
|
|
||
|
#port on which the lb should listen
|
||
|
listenport: 8888
|
||
|
|
||
|
#A name for the proxy daemon, this would be the suffix in the logs.
|
||
|
daemonname: myapplb
|
||
|
|
||
|
#Balancing Algorithm Avalilable options: roundrobin,source,leastconn,source,uri
|
||
|
#If persistance is required use source
|
||
|
balance: roundrobin
|
||
|
|