Skip to content

Instantly share code, notes, and snippets.

@ShadySQL
Forked from kimlindholm/run
Last active August 29, 2015 14:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ShadySQL/3a353c62cc88ef4cc4e8 to your computer and use it in GitHub Desktop.
Save ShadySQL/3a353c62cc88ef4cc4e8 to your computer and use it in GitHub Desktop.
#!/bin/sh
# Daemontools run script for starting Varnish
exec 2>&1
exec echo | mail -s "Varnish in Tokyo restarting" admin@example.com
exec varnishd -F -s malloc,130M -u nobody -g nobody -p cli_timeout=30 \
-p thread_pool_add_delay=2 -p thread_pool_min=400 -p thread_pool_max=4000 \
-p session_linger=100 -f /etc/varnish/varnish.tokyo.vcl -T 127.0.0.1:2000 \
-a 0.0.0.0:80
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment