nginx 이미지 캐 시 삭제

1761 단어 nginx그림.캐 시

proxy_temp_path /home/temp_dir;
proxy_cache_path /home/cache levels=1:2 keys_zone=cache_one:200m inactive=1d max_size=30g;
, /home/cache 。 :
# , URL http://192.168.1.1/test.txt, http://192.168.1.1/purge/test.txt URL 。
location ~ /purge(/.*)
{
# IP IP URL 。
#allow 127.0.0.1;
allow all;
deny all;
proxy_cache_purge cache_one $host$1$is_args$args;
}

좋은 웹페이지 즐겨찾기