Re: Is it possible to configure socket connection(not web) in Nginx reverse proxy server

2022-06-27 Thread Sergey A. Osokin
Hi there, hope you're doing well. On Mon, Jun 27, 2022 at 12:47:04AM -0400, mikecon wrote: > > stream { > server { > auth_basic off; The auth_basic directive is a part of http_auth_basic module, [2] so it's not related to a stream modules family. > proxy_ssl off; Th

Is it possible to configure socket connection(not web) in Nginx reverse proxy server

2022-06-26 Thread mikecon
Hi all, I have a CLI client and server written in Go Currently, they are communicating via a socket connection and it's a server streaming connection Now I want to have an Nginx proxy between these two Is it possible to configure the normal socket connection in Nginx? How do that, and what all cod