I have the following setup:

(internet) ---> [  pfSense Box  ]    /-> [ Apache / PHP server ]
                [running HAproxy] --+--> [ Apache / PHP server ]
                                    +--> [ Apache / PHP server ]
                                     \-> [ Apache / PHP server ]

For HTTP requests this works great, requests are distributed to my Apache servers just fine. For SSL requests, I had HAproxy distributing the requests using TCP load balancing, and it worked however since HAproxy didn't act as a proxy, it didn't add the X-Forwarded-For HTTP header, and the Apache / PHP servers didn't know the client's real IP address.

So, I added stunnel in front of HAproxy, reading that stunnel could add the X-Forwarded-For HTTP header. However, the package which I could install into pfSense does not add this header... also, this apparently kills my ability to use KeepAlive requests, which I would really like to keep. But the biggest issue which killed that idea was that stunnel converted the HTTPS requests into plain HTTP requests, so PHP didn't know that SSL was enabled and tried to redirect to the SSL site.

How can I use HAproxy to load balance across a number of SSL servers, allowing those servers to both know the client's IP address and know that SSL is in use? And if possible, how can I do it on my pfSense server?

Or should I drop all this and just use nginx?

link|improve this question

2  
Re: stunnel and X-Forwarded-For, see here. – Shane Madden Aug 17 '11 at 21:40
@Shane: Thanks. That's exactly where I read that I lose KeepAlive :-) – Josh Aug 17 '11 at 21:55
feedback

4 Answers

up vote 8 down vote accepted

You dont need to drop it all, you could just use nginx in front of haproxy for SSL support, keeping all your load balancing config. You dont even need to use nginx for HTTP if you don't want to. Nginx can pass both X-Forwarded-For and a custom header indicating SSL is in use (and client cert information if you want). Nginx config snippet that sends required information:

proxy_set_header SCHEME $scheme;      # http/https
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header CLIENT_CERT $ssl_client_raw_cert;
link|improve this answer
feedback

HAProxy can't hit an SSL backend without using raw TCP mode, losing X-Forwarded-For, but, you could potentially re-encrypt the traffic with a listening stunnel for the backend transit. Ugly, though.

I like Ochoto's approach better, with a caveat: nginx is a perfectly capable load balancer; if you're using it, I'd say use it for everything. Proxy your incoming HTTPS to load balanced HTTPS backends - and that way, there's no need for custom headers for SSL information (unless you do need the client certificate).

link|improve this answer
I'm not sure why I'm clinging on to HAproxy. I think it's because pfSense has a package for it, and SOIS uses it. Neither one is a great reason. :-) – Josh Aug 17 '11 at 21:54
I digress from nginx beeing a capable load balancer, unless you use the non standard module upstream_fair it does a simple round robin (or client ip hash) without taking into account if destination backend is already busy with requests and thus growing queue in that backend when there are other backends free and waiting for a job. HAProxy also nicely monitor backends and displays stats about them. – Ochoto Aug 18 '11 at 7:18
If only one of the following would become true a) Nginx gets decent state tracking and fair load balancing b) HAProxy gets decent SSL support One can only hope – Yavor Shahpasov Aug 19 '11 at 9:29
I just deployed a setup using nginx -> haproxy -> nginx -> backend for SSL, this is due to the lack of HTTPS support in haproxy as discussed here, but also because nginx does not support http health check scripts. – Geoffrey Mar 28 at 23:13
feedback

For anyone else who finds this question, I followed Ochoto's advice and used nginx. Here's the specific steps I used to make this work on pfsense:

  1. Using the pfsense web interface, I installed the pfsense PfJailctl package and the "jail_template" package under System > Packages so I could create a FreeBSD jail under which to compile and install nginx on the pfsense system.

  2. I configured a jail for my nginx server under Services > Jails, giving the new jail the same hostname and IP address of the virtual IP alias which I had HAproxy running on. O bound the jail to the WAN interface. I used the default jail template and enabled unionfs rather than nullfs.

  3. Once the jail had been started, I SSHed in to the pfsense box and ran jls to find the jail's number. I then ran jexec 1 sh to get a shell inside the jail. From there I set up BSD ports.

    portsnap extract
    portsnap fetch update
    cd /usr/ports/www/nginx
    make install clean
    
  4. I then configured nginx to listen on port 443, and pass all requests to HAproxy on port 80, including the real IP and the SSL status inside HTTP headers. My usr/local/etc/nginx/nginx.conf looks like:

    worker_processes  1;
    
    events {
        worker_connections  1024;
    }
    
    http {
        upstream haproxy {
            server 209.59.186.35:80;
        }
    
        server {
            listen       443;
            server_name  my.host.name default_server;
            ssl                  on;
            ssl_certificate      my.crt;
            ssl_certificate_key  my.key;
            ssl_session_timeout  5m;
    
            ssl_protocols  SSLv2 SSLv3 TLSv1;
            ssl_ciphers  HIGH:!aNULL:!MD5;
            ssl_prefer_server_ciphers   on;
    
            location / {
                proxy_pass http://haproxy;
    
                proxy_set_header Host $host;
                proxy_set_header X-Real-IP $remote_addr;
                proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    
                proxy_set_header X-Forwarded-Proto https;
            }
        }
    
    }
    
  5. I then modified my PHP application to detect the X-Forwarded-Proto HTTP Header:

    function usingSSL()
    {
        return (
           (isset($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) == 'on' )
            || (isset($_SERVER['HTTP_X_FORWARDED_PROTO'])
                   && strtolower($_SERVER['HTTP_X_FORWARDED_PROTO']) == 'https' ));
    }
    

So the final setup is:

(internet) ---> [ -> nginx -> haproxy -]--> (pool of apache servers)
                [    (pfSense server)  ]
link|improve this answer
1  
You should disable SSLv2 unless you really need it. gnu.org/software/gnutls/manual/html_node/… I don't know why Nginx still supports it in its default config. – Ochoto Aug 18 '11 at 20:20
Also realise that with 1024 worker connections you will support at most 512 concurrent clients. – Ochoto Aug 18 '11 at 20:27
@Ochoto: Thanks for both of those tips! I'm new to HAproxy but even less familiar with nignx... – Josh Aug 19 '11 at 11:55
feedback

You could just use HAproxy in TCP mode and handle SSL with Apache. Less complicated setup that allows HTTP/1.1 throughout.

link|improve this answer
Sorry, no. You didn't read my question. I stated clearly that this was inadequate: "For SSL requests, I had HAproxy distributing the requests using TCP load balancing, and it worked however since HAproxy didn't act as a proxy, it didn't add the X-Forwarded-For HTTP header, and the Apache / PHP servers didn't know the client's real IP address" – Josh Aug 19 '11 at 11:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.