using nginx open source to tunnel https requests to backend set

2020-01-08 Thread Brendan Doyle
Hi, So I want to use nginx open source as a load balancer to forward https requests to a backend set where the TLS is terminated by the application on the backend servers. i.e I want to tunnel the TLS traffic. And I'm wondering about the best approach. What I'm thinking is that I use the str

Re: tcp stream load balancer not working on Oracle Linux 7.5

2019-05-08 Thread Brendan Doyle
Ah yes, I should have paid more attention to the tcpdump output. I switched to using iperf, and it all seems to be working fin now. Thanks On 08/05/2019 02:24, Patrick wrote: On 2019-05-07 23:26, Brendan Doyle wrote: I'm trying to get a basic tcp load balancer working on OL : ... # nm

tcp stream load balancer not working on Oracle Linux 7.5

2019-05-07 Thread Brendan Doyle
Hi, I'm trying to get a basic tcp load balancer working on OL : cat /etc/oracle-release Oracle Linux Server release 7.5 My config is very basic: stream {     upstream backend_stream {     server 10.129.87.160:5000;     server 10.129.87.120:5000;     }     s