Advertisement
UHLHosting

Untitled

Jan 11th, 2016
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1.  
  2. # Varnish environment configuration description. This was derived from
  3. # the old style sysconfig/defaults settings
  4.  
  5. # Set this to 1 to make systemd reload try to switch VCL without restart.
  6. RELOAD_VCL=1
  7.  
  8. # Main configuration file. You probably want to change it.
  9. VARNISH_VCL_CONF=/etc/varnish/default.vcl
  10.  
  11. # Default address and port to bind to. Blank address means all IPv4
  12. # and IPv6 interfaces, otherwise specify a host name, an IPv4 dotted
  13. # quad, or an IPv6 address in brackets.
  14. #VARNISH_LISTEN_ADDRESS=127.0.0.1
  15. VARNISH_LISTEN_PORT=80
  16.  
  17. # Admin interface listen address and port
  18. VARNISH_ADMIN_LISTEN_ADDRESS=127.0.0.1
  19. VARNISH_ADMIN_LISTEN_PORT=6082
  20.  
  21. # Shared secret file for admin interface
  22. VARNISH_SECRET_FILE=/etc/varnish/secret
  23.  
  24. # Backend storage specification, see Storage Types in the varnishd(5)
  25. # man page for details.
  26. VARNISH_STORAGE="malloc,1G"
  27.  
  28. # User and group for the varnishd worker processes
  29. VARNISH_USER=varnish
  30. VARNISH_GROUP=varnish
  31.  
  32. # Other options, see the man page varnishd(1)
  33. #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