![Adam Harwell](/assets/img/avatar_default.png)
Having all services in one giant haproxy file makes altering configuration for a service both painful and dangerous. Each service should be configured with a simple set of variables and rendered with a single unified template. Available are two new templates: * haproxy_single_service_listen.cfg.j2: close to the original style, but only one service per file * haproxy_single_service_split.cfg.j2: using the newer haproxy syntax for separated frontend and backend For now the default will be the single listen block, for ease of transition. Change-Id: I6e237438fbc0aa3c89a3c8bd706a53b74e71904b
14 lines
382 B
YAML
14 lines
382 B
YAML
---
|
|
haproxy_service_template: "haproxy_single_service_listen.cfg.j2"
|
|
|
|
# Extra frontend/backend options (additive with locally defined options)
|
|
haproxy_frontend_http_extra:
|
|
- "option httplog"
|
|
- "option forwardfor"
|
|
haproxy_frontend_tcp_extra:
|
|
- "option tcplog"
|
|
haproxy_backend_http_extra: []
|
|
haproxy_backend_tcp_extra: []
|
|
|
|
haproxy_health_check: "check inter 2000 rise 2 fall 5"
|