我正在使用在CentOS上运行的nginx / 0.7.68,配置如下:
server {
listen 80;
server_name ***;
index index.html index.htm index.php default.html default.htm default.php;
location / {
root /***;
proxy_pass http://***:8888;
index index.html index.htm;
}
# where *** is my variables
该proxy_pass
是到IP经常变化的DNS记录。Nginx缓存过时的IP地址,从而导致对错误IP地址的请求。
过期时,如何停止nginx缓存IP地址?