Skip to content

Instantly share code, notes, and snippets.

@vladimirmyshkovski
Created May 1, 2017 19:08
Show Gist options
  • Save vladimirmyshkovski/4fac279e7b970fd09fd76f4f9c52ef85 to your computer and use it in GitHub Desktop.
Save vladimirmyshkovski/4fac279e7b970fd09fd76f4f9c52ef85 to your computer and use it in GitHub Desktop.
clear cache nginx
for i in `find /var/lib/nginx/cache -type f`; do rm $i ; done
or
find /var/lib/nginx/cache -type f -exec rm {} \;
# /var/lib/nbinx/cache -- path of the nginx cache
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment