Re: Nginx as forward proxy and maintaining persistent connections

2018-03-24 Thread Maxim Dounin
Hello! On Fri, Mar 23, 2018 at 08:17:09PM -0400, vi54 wrote: > am trying to configure nginx as a forward proxy and establish persistent Note that nginx is not a forward proxy. You may have better luck with other programs which are designed to be used as a forward proxy. > connection between

Nginx as forward proxy and maintaining persistent connections

2018-03-23 Thread vi54
am trying to configure nginx as a forward proxy and establish persistent connection between the nginx and the upstream server. When I set server { location / { proxy_pass http://$http_host$request_uri; proxy_http_version 1.1; proxy_set_header Connection ""; ... } } in