Created
September 24, 2016 17:19
-
-
Save tuklusan/98f138d326529c65afa0c2ca7dd2fe12 to your computer and use it in GitHub Desktop.
/etc/varnish/varnish.params - Varnish 4 Working Simple Basic varnish.params | Simple Basic Working VARNISH 4.0 Configuration: default.vcl and varnish.params for a functional web server cache - http://supratim-sanyal.blogspot.com/2016/09/simple-basic-working-varnish-40.html
This file contains hidden or 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
# -- | |
# /etc/varnish/varnish.params | |
# Minimal working Varnish 4.0 Configuration to serve static-only website pages from lighttpd backend | |
# From "Simple Basic Working VARNISH 4.0 Configuration: default.vcl and varnish.params for a functional web server cache" | |
# http://supratim-sanyal.blogspot.com/2016/09/simple-basic-working-varnish-40.html | |
# -- | |
# Varnish environment configuration description. This was derived from | |
# the old style sysconfig/defaults settings | |
# Set this to 1 to make systemd reload try to switch vcl without restart. | |
RELOAD_VCL=1 | |
# Main configuration file. You probably want to change it. | |
VARNISH_VCL_CONF=/etc/varnish/default.vcl | |
# Default address and port to bind to. Blank address means all IPv4 | |
# and IPv6 interfaces, otherwise specify a host name, an IPv4 dotted | |
# quad, or an IPv6 address in brackets. | |
#VARNISH_LISTEN_ADDRESS=192.168.1.5 | |
#VARNISH_LISTEN_PORT=6081 | |
VARNISH_LISTEN_ADDRESS=sanyalnet-cloud-vps.freeddns.org | |
VARNISH_LISTEN_PORT=80 | |
# Admin interface listen address and port | |
VARNISH_ADMIN_LISTEN_ADDRESS=127.0.0.1 | |
VARNISH_ADMIN_LISTEN_PORT=6082 | |
# Shared secret file for admin interface | |
VARNISH_SECRET_FILE=/etc/varnish/secret | |
# Backend storage specification, see Storage Types in the varnishd(5) | |
# man page for details. | |
#VARNISH_STORAGE="file,/var/lib/varnish/varnish_storage.bin,1G" | |
#VARNISH_STORAGE="file,/var/lib/varnish/varnish_storage.bin,1M" | |
VARNISH_STORAGE="malloc,1M" | |
# Default TTL used when the backend does not specify one | |
#VARNISH_TTL=120 | |
VARNISH_TTL=30 | |
# User and group for the varnishd worker processes | |
VARNISH_USER=varnish | |
VARNISH_GROUP=varnish | |
# Other options, see the man page varnishd(1) | |
#DAEMON_OPTS="-p thread_pool_min=5 -p thread_pool_max=500 -p thread_pool_timeout=300" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment