@thomas.scheer wrote:
A short description of the setup:
I have two serverfarms which differs in name (server1.domain and server2.domain) but shares the same frontend (with ssl certificate and same port) …
So the traffic is routed to the backends withfrontend incoming
bind *:443 ssl crt /usr/local/etc/haproxy/cert/server.pem
mode httpUse backend “backend_linux” for “linux.” host.
Use backend “backend_windows” for “windows.” host.
acl host_linux hdr_beg(host) -i linux. acl host_windows hdr_beg(host) -i windows. use_backend backend_linux if host_linux use_backend backend_windows if host_windows default_backend backend_linux
Want I now want to have is a different logfile (using rsyslog) for each server-farm… like
log 127.0.0.1 local1 debug if host_linux
log 127.0.0.1 local2 debug if host_windows
(this is NOT possible in the current version)BUT is there any other solution for that problem except to splitt the incoming traffic to two frontends ?
Posts: 2
Participants: 2