Hi,

>> listen http
>> bind: 80
>> mode ssl-client
>> use-server sslsrv 127.0.0.1:443
> I think this should work
> --
> listen http :80
> mode http
> server sslsrv 127.0.0.1:443 ssl
> --

Yes exactly, or something like this when using the frontend/backend approach:

frontend myfrontend
 mode http
 bind :80
 default_backend mybackend
backend mybackend
 mode http
 server s4 10.0.0.3:443 ssl



Its really that simple, because when in http mode, once we strip SSL, we have
straightforward and plaintext HTTP and can do with it what we want.




Regards,

Lukas                                     

Reply via email to