Hi
I have seen sometimes that google dns has banned my servers. Since I use
proxy hostnames instead of ips, does the nginx cache the response from
dns servers or queries them everytime it receives a request?
Regards
Posted at Nginx Forum:
Hi
I have seen sometimes that google dns has banned my servers. Since I use
proxy hostnames instead of ips, does the nginx cache the response from
dns servers or queries them everytime it receives a request?
Regards
Posted at Nginx Forum:
On Dec 4, 2011, at 12:13 PM, mojiz wrote:
Hi
I have seen sometimes that google dns has banned my servers. Since I use
proxy hostnames instead of ips, does the nginx cache the response from
dns servers or queries them everytime it receives a request?
Check this
http://nginx.org/en/docs/http/ngx_http_core_module.html#resolver
Basically - yes, and there are more configuration parameters now to use
to tune it more nicely.
I saw the announcement but it looks like Nginx 1.1.11 isn’t still
honoring the DNS ttl or the “valid” parameter at all.
I have 2 related questions to this topic
location /mylocation {
resolver 127.0.0.4 valid=5s;
set $myserver “myserver:1000”;
proxy_pass http://$myserver;
proxy_redirect http://myserver.mydomain.in:8000
https://www.myserver.com;
}
Posted at Nginx Forum:
Hello!
On Thu, Dec 15, 2011 at 05:18:55PM -0500, aficionado wrote:
set $myserver "myserver:1000"; proxy_pass http://$myserver; proxy_redirect http://myserver.mydomain.in:8000
Yes.
- If I receive 100 request in 50 seconds and have my DNS (127.0.0.4)
returning records with TTL=1. How many request to my DNS should Nginx
perform in that period?
With one worker process - about 10 DNS requests, assuming the
above config.
Maxim D.
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.
Sponsor our Newsletter | Privacy Policy | Terms of Service | Remote Ruby Jobs