Advertisement
Guest User

Untitled

a guest
Feb 13th, 2016
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # Set this to 1 to make systemd reload try to switch vcl without restart.
  2. RELOAD_VCL=1
  3.  
  4. # Main configuration file. You probably want to change it.
  5. VARNISH_VCL_CONF=/etc/varnish/default.vcl
  6.  
  7. # Default address and port to bind to. Blank address means all IPv4
  8. # and IPv6 interfaces, otherwise specify a host name, an IPv4 dotted
  9. # quad, or an IPv6 address in brackets.
  10. # VARNISH_LISTEN_ADDRESS=192.168.1.5
  11. VARNISH_LISTEN_PORT=80
  12.  
  13. # Admin interface listen address and port
  14. VARNISH_ADMIN_LISTEN_ADDRESS=127.0.0.1
  15. VARNISH_ADMIN_LISTEN_PORT=6082
  16.  
  17. # Shared secret file for admin interface
  18. VARNISH_SECRET_FILE=/etc/varnish/secret
  19.  
  20. # Backend storage specification, see Storage Types in the varnishd(5)
  21. # man page for details.
  22. VARNISH_STORAGE="file,/var/lib/varnish/varnish_storage.bin,1G"
  23.  
  24. # Default TTL used when the backend does not specify one
  25. VARNISH_TTL=120
  26.  
  27. # User and group for the varnishd worker processes
  28. VARNISH_USER=varnish
  29. VARNISH_GROUP=varnish
  30.  
  31. # Other options, see the man page varnishd(1)
  32. #DAEMON_OPTS="-p thread_pool_min=5 -p thread_pool_max=500 -p thread_pool_timeout=300"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement