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地址?
2018年编辑:很多事情发生了变化.检查@ohaal的答案,以获得有关此问题的真实信息.