Answer the question
In order to leave comments, you need to log in
Nginx, is it possible to proxy each client with a separate socket?
I ran into a problem when developing a complex balancing application for the body of an http request, in one socket from nginx data can arrive from two different clients in the load. Debugging has to be done through an ssh tunnel from the test server due to network delimitation.
Config indicating http 1.1
location / {
proxy_pass http://backend;
proxy_http_version 1.1;
proxy_set_header Connection $connection;
}
upstream backend{
server 127.0.0.1:12321;
keepalive 32;
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question