Hi Jarno,
On Tue, Apr 01, 2014 at 04:22:02PM +0300, Jarno Huuskonen wrote:
> > concerning nbproc, you should makes all your SSL processes to point to
> > a single HAProxy process in clear where you do your stick-table stuff.
> > Each frontend and backend must be in the same process, so you must
> > pass information through the loopback interface between you SSL
> > frontends and your HTTP with stich-table backends.
>
> I'm not sure if I understand you correctly. You don't happen to have
> any configuration examples ?
In short, here's the principle :
global
nbproc 8
listen ssl-front
bind-process 2-7
bind :443 ssl crt ...
server clear 127.0.0.1:444 send-proxy
listen clear-front
bind-process 1
bind 127.0.0.1:444 accept-proxy
... normal stuff as you'd do with nbproc=1 ...
Willy