Skip to content

Instantly share code, notes, and snippets.

@martastain
Last active February 28, 2017 08:07
Show Gist options
  • Save martastain/cfb54aac992a393c0d306b459751dce6 to your computer and use it in GitHub Desktop.
Save martastain/cfb54aac992a393c0d306b459751dce6 to your computer and use it in GitHub Desktop.
nginx dash/hls cache
@reboot mkdir -p /mnt/cache/origin_dash && chown www-data:www-data /mnt/cache/origin_dash
@reboot mkdir -p /mnt/cache/origin_hls && chown www-data:www-data /mnt/cache/origin_hls
*/5 * * * * find /mnt/cache/origin_dash -not -name "*init*" -not -name "*raw*" -mmin +5 -type f -exec rm -f {} \;
*/5 * * * * find /mnt/cache/origin_hls -maxdepth 1 -mmin +5 -type f -exec rm -f {} \;
tmpfs /mnt/cache tmpfs nodev,nosuid,noexec,nodiratime,size=4092M 0 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment