#!/bin/bash
echo "正在清除缓存......."
nginx -s stop
rm -rf /usr/local/nginx/cache/*
nginx
echo "缓存已经清除!"