Re: Trouble with stream directive
You nailed it. Thank you. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,259748,259755#msg-259755 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx
Trouble with stream directive
I'm trying to test the TCP load balancing function in 1.9.2, but am having some problems getting a very basic configuration working. TIA ubuntu@dev:~$ cat /etc/nginx/stream.d/test.conf stream { server { listen 12345; proxy_pass mybackend:12345; } } ubuntu@dev:~$ sudo