Re: Resize & cache image from 3rd-party server?

2015-01-11 Thread hebrew878
please give cache option for resized images too. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,8246,256043#msg-256043 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: download and movie alias

2015-01-11 Thread Silvio Siefke
Hello, On Fri, 9 Jan 2015 23:52:25 + Francis Daly wrote: > location = /download { return 301 /download/; } Thank you it works. Silvio ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: verifying that load balancing really works

2015-01-11 Thread B.R.
You can tweak the access log entries with log_format to include the upstream server, so you will know which upstream(s) each request got served by. As a manual, simple, test case, I would create a specific, testing location on eac

Re: NGINX Access Logs

2015-01-11 Thread B.R.
nginx does not handle the TCP stack, which is part of the network layer of the OSI stack, underneath anything nginx does. Have a look at your OS network stack monitoring tools. Exhaustion of TCP sockets (or file descriptors) will lead to the impossibility of opening new connections and might lead

verifying that load balancing really works

2015-01-11 Thread ST
Hi, how can I verify that load balancing really works? I have 2 servers with nginx, one of them functions as a LoadBalancer and redirects requests either on itself or on the other server(by default round-robin). When I look on the traffic using jnettop it looks like both servers are loaded(while t

Re: NGINX Access Logs

2015-01-11 Thread exilemirror
Hi Steve, Thanks for the reply. How do we determine if there's an overload of tcp connections via nginx? Is it via this access logs? Posted at Nginx Forum: http://forum.nginx.org/read.php?2,256026,256036#msg-256036 ___ nginx mailing list nginx@nginx.o