varnishこまんど
## 構文check
varnishd -C -f /tmp/test.vcl
## clientとのやり取りのlog
varnishlog -C
### よくこれでStatusだけcheckしたりしてる
varnishlog -C | grep Status
## backendとのやり取りのlog
varnishlog -b
varnishadm
## 認証でコケたら
varnishadm -T localhost:6082 -S /etc/varnish/secret
## なにつかえるのん
varnishadm help
## 現在アクティブなconfig
varnishadm vcl.list | awk ' /^active/ { print $3 } '
curl
## キャッシュパージ
curl -X PURGE http://localhost/hogehoge.png
## 全部のキャッシュパージ
varnishadm "ban.url .*"