HAproxy is a TCP/HTTP load balancer which provides cookie-based persistence, advanced traffic regulation with surge protection, automatic failover, run-time regex-based header control, Web-based reporting, advanced logging to help trouble-shooting buggy applications and/or networks, and a few other ...

learn more… | top users | synonyms

0
votes
1answer
4 views

Haproxy using stick-table and url parameters for flash?

I have the following configuration: backend webservers_backend cookie SERVERID insert indirect nocache stick-table type string len 40 size 20k stick store-response set-cookie(SERVERID) table ...
0
votes
1answer
88 views

Scaling nginx with static files — non-Persistent requests kill req/s

Working on a project where we need to server a small static xml file ~40k / s. All incoming requests are sent to the server from HAProxy. However, none of the requests will be persistent. The issue ...
0
votes
0answers
52 views

Haproxy + Nginx + Unicorn - Not serving static assets with SSL

I was trying to make my Rails website serve all the web-pages and assets with both, http or https, but what happens is that when I enter in https mode it is being redirected to http and the assets are ...
0
votes
1answer
14 views

HAProxy should not forward incoming request to down instance

In my scenario, I have 2 servers, both are communicating with HAProxy. When request comes in, HAProxy splits the request and send it to both the server in round robin method. If in any case my first ...
1
vote
1answer
27 views

Suggestions for extremely aggressive HTTP caching for REST resources

I have a setup where I would like to have extremely aggressive HTTP caching on my internal proxy. Basically, what I want to achieve is a simplistic caching strategy like this: any GET request that ...
0
votes
0answers
18 views

Original Host Request through HAProxy

I'm using HAProxy to load balance an API which uses OAuth. As part of OAuth there is a hash that uses the requested URL in part of it. In the API code, the url when sent to the server from the LB ...
0
votes
0answers
28 views

Reverse proxy with haproxy not forwarding host

I am trying to configure HAproxy running on one server to forward requests to some apps I have running on appfog but it has stopped working. I have checked my configurations but I can't spot the ...
0
votes
0answers
10 views

How should I obtain haproxy's detailed http logs when using ssl?

I'm using HAProxy's option httplog logs extensively. We're about to move to ssl frontends though, which causes me to lose that info. Is there a recommended way to continue to get this logging ...
0
votes
0answers
17 views

HAproxy log http request body

I've got HAproxy set up and logging all http request headers. Now I need to log the http request body message. I can't figure out how to do this and I can't find any examples of it. Is there any ...
1
vote
0answers
54 views

HAProxy installation in CentOS 5.5 32 bit

I am using CentOS 5.5 32 bit for my application server. I want to install HAProxy for load balancing. I found one rpm installer for HAProxy haproxy-1.4.22-1.el6.x86_64.rpm. But during installation I'm ...
0
votes
0answers
98 views

SSL redirect from HTTP to HTTPS in HAProxy

I have 2 servers. one having tomcat and other having haproxy. I need to update the haproxy.cfg in such a way that all the requests with http:// are redirected to https:// My tomcat is running in the ...
-1
votes
0answers
46 views

Can i give public ip of ec2 instance to HAProxy? [closed]

Lets say I want to load balance traffic for www.example1.com to server1 with IP addresses 10.0.0.3, and to server 2 which has a public ip from ec2. Can we specify the same in the configuration file? ...
0
votes
1answer
156 views

How to serve static content in a setup with Nginx -> HAProxy -> Apache?

In the below stack setup, where could I serve static content? (going with a CDN is not an option). I'm not getting in which server should I put them (servers 2 and 3, meaning static requests would go ...
2
votes
0answers
51 views

Force redirection to HTTPS with query params by HAProxy

I am using HaProxy to load balance incoming requests and do sub-domain based redirection. Now I want to make all incoming request forcefully HTTPS, with query params. For ex:- ...
0
votes
0answers
17 views

Forward all requests if ACL doesnt match in haproxy

I have haproxy configured which listen on port 8443. I have created one ACL and all requests matching to it will be forwarded to local httpd and being handle. But I am not able to handle other ...
0
votes
1answer
33 views

Why does HAProxy recommend setting timeouts that are multiples of 3 seconds?

From the HAProxy documentation on client timeouts: It is a good practice to cover one or several TCP packet losses by specifying timeouts that are slightly above multiples of 3 seconds (eg: 4 ...
0
votes
2answers
57 views

How to get HAproxy to return next db server's ip address?

I'd like to use HAproxy for checking if my db servers are online, without actually routing the requests through the HAproxy box. Is there any way I can connect to HAproxy and have it return a DB host ...
0
votes
1answer
19 views

HA-Proxy balancing by source doesnt appear consistent

Using HA-Proxy 1.4.18 I am using balance source as the option to balance a tcp stream to 2 servers. However from an admittedly very small sample set of connections it appears that they all just go to ...
1
vote
1answer
102 views

What are issues with using WebSockets with proxies and load balancers?

I'm reading up on SockJS node server. Documentation says: Often WebSockets don't play nicely with proxies and load balancers. Deploying a SockJS server behind Nginx or Apache could be painful. ...
0
votes
1answer
87 views

HAProxy and reqrep Rewriting Configuration

I'm trying to configurate Haproxy acl. For example, http://www.abc.com/test/test.html rewrite to http://www.abc.com/index.html. Please tell me how to do? thanks reqrep ^([^\ :]*)\ /test/test.html ...
0
votes
0answers
71 views

VPN PPTP error through HA Proxy

Here is my network topology: Web Server ( VPN Client ) ---> HA Proxy ---> VPN Server I have configured HA Proxy with TPROXY, my Web Server can connect to VPN Server. But for a period of time ( ...
0
votes
0answers
115 views

Haproxy Real IP + Cloudflare

I just can't seem to get this done. I'm still seeing cloudflare IPs in my log. Currently, I have a loadbalancer which is behind Cloudflare. Currently, here's the block related to forwardfor: ...
0
votes
0answers
31 views

Run Script before load balancer connection

Alright, so I figure I will ask the awesome stackoverflow community to see if I can get an answer. My question is, I want to run a script, php specifically but I could do any type technically ...
1
vote
2answers
116 views

In HAproxy my websocket connection close after 50 seconds. How to change it?

I'm using Haproxy with tornado for websocket. My connection working fine if i directly connect to tornado but if i use HAproxy with below config then connection closed after 50 seconds. My Haproxy ...
0
votes
0answers
101 views

HAProxy mangling Socket.IO request - reserved fields must be empty

Hoping someone can help me. I'm using NodeJS v0.8.16 Socket.ID v0.9.13 and HAProxy 1.5-dev17. My setup is on Amazon AWS using a VPC, HAProxy on a public facing instance and NodeJS on a separate ...
0
votes
0answers
48 views

HAProxy and ACL for ACCEPT-LANGUAGE header parsing

I am trying to correctly parse the Accept-Language header and can't figure out a good way in HAProxy. I have resorted to assuming the first language mentioned in the Accept-Language header string has ...
0
votes
0answers
44 views

Node.js, client socket pool

I'm new to node.js programming and I am experimenting with an application. I have Haproxy setup on multiple servers, and I have exposed its socket with socat. Now I want to retrieve the statistics ...
0
votes
0answers
222 views

install haproxy in windows [closed]

I didn't see haproxy windows installer . is it available ? OR Is there any way to install in windows 7 pro . Thanks , Srinivas
0
votes
1answer
303 views

Haproxy in front of varnish or the other way round?

I can imagine two setups: Load-balance then cache +-- Cache server #1 (varnish) -- App server #1 / Load Balancer (haproxy)-+---- Cache server #2 ...
0
votes
1answer
49 views

haproxy logging on mac osx

Does anyone know where does haproxy write logs on a mac osx? I want to log the secure cookies coming to my rails backend using capture cookie _secure len 32. I checked the Console.app, but the logs ...
0
votes
0answers
79 views

haproxy ssl handshake error

we are receiving a lot of error messages to haproxy log. There are 3 types of them: Time-out during SSL handshake Connection closed during SSL handshake SSL handshake failure I was never able ...
0
votes
0answers
53 views

Issue faced with Load Balancer used for Application Clustering

We are using HAPROXY to cluster two app servers. Currently, for test purpose, the 2 servers are virtual servers. We are observing lot of Concurrency warnings being logged in the server logs as below ...
0
votes
1answer
259 views

nginx/haproxy performance with many lines of configuration

I'm planning to build an environment that can programmatically setup child servers and sandbox them using nginx/ha. First I would ensure *.example.com points to nginx/ha. Then, for example, I would ...
0
votes
1answer
63 views

Haproxy load balancer with ACL

How can we configure Haproxy as a Cookie based Load-Balacer depending upon the cookies status? i.e. if the cookie is absent then redirect to server1 & if cookies is present then server2? I search ...
1
vote
1answer
148 views

X-Forwarded-For in Gwan

I have read through the documentation (both API and Manual), and haven't seem to find any support by gwan for the X-Forwarded-For header. The only thing I have found that could be related was ...
1
vote
1answer
96 views

HAProxy - stop catering requests on 500 from server

Is there any way to stop catering further requests to server from HAProxy when a bankend server sends a 500? When a server receives a signal like SIGINT, it will start serving "500 Server Internal ...
0
votes
0answers
290 views

Routing websockets to socket.io with haproxy on multiple ports

I'm having a great problem correctly routing socket.io websocket handshake using haproxy on a ubuntu server i'm trying to configure. I've read a lot both here and on the web but i can't seem to find a ...
0
votes
0answers
109 views

Connection parameter in HTTP header for ELB

I've a netty based application hosted in a VPC. For load-balancing the same I want to use ELB. Am facing the problem that till I explicitly set Connection : close ELB doesn't return the status code ...
4
votes
1answer
2k views

Haproxy ssl configuration - install root and intermediate certificate

After to much googling, i finally made my haproxy ssl to works. But now i got problem because root and intermediate certificate is not installed so my ssl don`t have green bar. My haproxy config ...
0
votes
1answer
99 views

HAproxy - Proxies the whole IP

In order to test every possible solution to get Socket.io working with a parallel Apache installation, I have now installed HAproxy that listens on port 80. It proxies everything to Apache, unless the ...
2
votes
0answers
122 views

HAProxy use different backend if first backend returns http response with 404 status code [closed]

Can HAProxy use another backend in case the first (roundrobin selected) backend for current HTTP Request returns HTTP 404 Response?
0
votes
0answers
72 views

How JMeter finds server redirects using load balancer?

I'm using Jmeter to load test my web application. I have two app servers and we are using 2 HAProxy (proxy servers) for load-balance. How JMeter finds server redirects using load balancer?
0
votes
1answer
158 views

What happens if HAProxy cluster assigns the same Virtual IP to multiple machines?

Let's say I have two instances of HAProxy running in a cluster to provide load balancing for something else. The two node HAProxy cluster could be implemented using Pacemaker and Corosync. Consider ...
0
votes
1answer
425 views

HAproxy SSL Segfault with 1.5-dev17

Getting a segfault when trying to enable ssl on 1.5-dev17 Ubuntu Server 12.04 Tried almost every variation I could think of with private key and CA bundle concatenated and used as a single crt, also ...
0
votes
0answers
66 views

customizing puppet-haproxy module

(Already tried the Puppet-users malling list without any joy, so trying here) I've just started using puppet-haproxy module and planing to role it out department-wide, so that other ...
0
votes
1answer
587 views

Load balancing MySql with HAProxy on EC2 Servers

For our application, setup on the Amazon EC2 instances, we are using MySQL databases, installed on 2 EC2 instances, in master-master replication mode. To load balance these DB Servers I am using an ...
0
votes
3answers
153 views

HAProxy doesn't support SSL

Is there a way around using HAProxy with SSL? I know the new version is supposed to support that, but how stable is that? Are there any things I need to consider for setting up a load balancer with ...
2
votes
2answers
1k views

Apache Tomcat 7 Changing JSESSIONID on Every Request

This issue is driving me insane, so maybe someone could help me understand what the issue is. I have a tomcat web application being fronted by HAProxy. HAProxy is also doing SSL offloading, and is ...
0
votes
1answer
226 views

HAProxy/Websockets why new sockets are constantly being created?

I'm trying to setup Websockets with HAProxy, with the following configuration: http traffic -> haproxy -> varnish -> nginx -> node ws traffic -> haproxy -> node one subdomain has forced ssl so ...
2
votes
0answers
88 views

Timeout images when server down to prevent cluster overload?

This is a somewhat complex situation. We serve our application off of 16 load balanced servers that sit behind haproxy. We serve the images associated with the app from another server running nginx ...

1 2 3 4 5