Archived
1
0
This repository has been archived on 2023-08-12. You can view files and clone it, but cannot push or open issues or pull requests.
nntpchan/contrib/tools/hooks/purge-varnish.sh

15 lines
419 B
Bash
Raw Normal View History

2016-11-15 18:49:54 +05:00
#!/usr/bin/env bash
#
# this script can be called via hooks for each post to purge varnish cache on new post
#
# ip to bind to when doing http request
ip="127.0.1.1"
2016-11-15 18:51:57 +05:00
varnish="127.0.0.1:8000"
2016-11-15 18:49:54 +05:00
# purge thread page
2016-11-15 19:00:51 +05:00
curl --interface "$ip" -X PURGE http://$varnish/thread-$(echo -n "$3" | sha1sum | cut -d' ' -f1).html &> /dev/null
2016-11-15 18:49:54 +05:00
# purge board page
2016-11-15 18:52:55 +05:00
curl --interface "$ip" -X PURGE http://$varnish/$1-0.html &> /dev/null