-
-
Save ShadySQL/3a353c62cc88ef4cc4e8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Daemontools run script for starting Varnish | |
exec 2>&1 | |
exec echo | mail -s "Varnish in Tokyo restarting" [email protected] | |
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