#
# cleanup broken tmp files like /var/tmp/nginx/client-temp/
#
05 * * * * root if [ -d /var/tmp/nginx/client-temp/ ]; then flock -n /tmp/rm-spool.lock /usr/bin/find /var/tmp/nginx/client-temp/ -type f -mtime +1 -delete; fi
05 * * * * root if [ -d /var/spool/nginx/ ]; then /usr/bin/find /var/spool/nginx/ -type f -mtime +1 -delete; fi
