当我从{p>更改proxy_cache_path
时
proxy_cache_path /nginx-cache/images/a levels=1:2 keys_zone=a:10m
max_size=10g inactive=15d use_temp_path=off;
proxy_cache_path /nginx-cache/images/b levels=1:2 keys_zone=b:10m
max_size=10g inactive=15d use_temp_path=off;
proxy_cache_path /nginx-cache/images/c levels=1:2 keys_zone=c:10m
max_size=10g inactive=3d use_temp_path=off;
到
proxy_cache_path /nginx-cache2/images/a levels=1:2 keys_zone=a:10m
max_size=10g inactive=15d use_temp_path=off;
proxy_cache_path /nginx-cache2/images/b levels=1:2 keys_zone=b:10m
max_size=10g inactive=15d use_temp_path=off;
proxy_cache_path /nginx-cache2/images/c levels=1:2 keys_zone=c:10m
max_size=10g inactive=3d use_temp_path=off;
proxy_cache_path
中只有一个开始缓存到新位置。
为强制nginx使用新路径,我尝试了umount nginx-cache
和nginx -s reload
,但没有用。
可能是什么问题?