Hi
was there any solution for this issue?
thanks a lot
Posted at Nginx Forum:
https://forum.nginx.org/read.php?2,259748,283116#msg-283116
___
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx
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
Please watch the top-level config (nginx.conf) where this file is included.
Most probably it already has the “stream” directive surrounding the include.
> On 19 Jun 2015, at 05:55, kecorbin wrote:
>
> I'm trying to test the TCP load balancing function in 1.9.2, but am having
> some problems gett
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