Re: DNS Caching Issue For community version

2016-05-15 Thread RT.Nat
I cannot install the above module. /Downloads/nginx-upstream-dynamic-servers-master$ make install make: *** No rule to make target `install'. Stop. May i know is there any problem in my machine( any required prerequistes). Posted at Nginx Forum: https://forum.nginx.org/read.php?2,266857,26691

Re: DNS Caching Issue For community version

2016-05-12 Thread RT.Nat
Not clear regarding, " Also you might check using directly the hostname as it might be possible that there is a bug when using variables." I tried adding the variable for resolving the dns but still the ip address does not changes. Is there any other way? or is there any bug in my script. resolv

Re: RE: DNS Caching Issue For community version

2016-05-12 Thread RT.Nat
I wanted check whether the resolver solves the DNS in a dynamic manner when the ip addresses changes. So I add the given code after several findings and yet the resolving the ip address is not happening. server{ ... resolver 8.8.8.8 valid=30s; resolver_timeout 10s; set $upstream "example

Re: DNS Caching Issue For community version

2016-05-12 Thread RT.Nat
Even adding the valid parameter the issue was not solved. Posted at Nginx Forum: https://forum.nginx.org/read.php?2,266857,266859#msg-266859 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

DNS Caching Issue For community version

2016-05-12 Thread RT.Nat
Troubled up in DNS caching of the IP address for a given DNS name. Adding the solution given below does not solve the problem of DNS caching in NGINX. resolver 8.8.8.8; set $upstream_endpoint https://example.net:8080; location / { proxy_pass $upstream_endpoint; } Is there any solutions? Po