I have one endpoint with 80/443 ports open. And in 443 port on some path (like /jms) have JMS service that works via http using chunked encoding for making connection alive for a long time (I know, that's a ugly hack).
As far I know chucked messages are collecting in simple packet. How to proxy it chunk by chunk and dont close the connection?
I think tcp proxy on custom path in server can solve my problem.I tried community module https://github.com/yaoweibin/nginx_tcp_proxy_module but it didn't worked as I want.