SlowFS是一个Nginx的扩展模块,用来给Nginx增加了缓存功能。
下面是该模块的简易配置:
http{slowfs_cache_path/tmp/cachelevels=1:2keys_zone=fastcache:10m;slowfs_temp_path/tmp/temp12;server{location/{root/var/www;slowfs_cachefastcache;slowfs_cache_key$uri;slowfs_cache_valid1d;}location~/purge(/.*){allow127.0.0.1;denyall;slowfs_cache_purgefastcache$1;}}}
评论