|
| 1 | +# Configuration file for varnish |
| 2 | +# |
| 3 | +# /etc/init.d/varnish expects the variables $DAEMON_OPTS, $NFILES and $MEMLOCK |
| 4 | +# to be set from this shell script fragment. |
| 5 | +# |
| 6 | +# Note: If systemd is installed, this file is obsolete and ignored. You will |
| 7 | +# need to copy /lib/systemd/system/varnish.service to /etc/systemd/system/ and |
| 8 | +# edit that file. |
| 9 | + |
| 10 | +# Should we start varnishd at boot? Set to "no" to disable. |
| 11 | +START=yes |
| 12 | + |
| 13 | +# Maximum number of open files (for ulimit -n) |
| 14 | +NFILES=131072 |
| 15 | + |
| 16 | +# Maximum locked memory size (for ulimit -l) |
| 17 | +# Used for locking the shared memory log in memory. If you increase log size, |
| 18 | +# you need to increase this number as well |
| 19 | +MEMLOCK=82000 |
| 20 | + |
| 21 | +# Default varnish instance name is the local nodename. Can be overridden with |
| 22 | +# the -n switch, to have more instances on a single server. |
| 23 | +# You may need to uncomment this variable for alternatives 1 and 3 below. |
| 24 | +# INSTANCE=$(uname -n) |
| 25 | + |
| 26 | +# This file contains 4 alternatives, please use only one. |
| 27 | + |
| 28 | +## Alternative 1, Minimal configuration, no VCL |
| 29 | +# |
| 30 | +# Listen on port 6081, administration on localhost:6082, and forward to |
| 31 | +# content server on localhost:8080. Use a 1GB fixed-size cache file. |
| 32 | +# |
| 33 | +# This example uses the INSTANCE variable above, which you need to uncomment. |
| 34 | +# |
| 35 | +# DAEMON_OPTS="-a :6081 \ |
| 36 | +# -T localhost:6082 \ |
| 37 | +# -b localhost:8080 \ |
| 38 | +# -u varnish -g varnish \ |
| 39 | +# -S /etc/varnish/secret \ |
| 40 | +# -s file,/var/lib/varnish/$INSTANCE/varnish_storage.bin,1G" |
| 41 | + |
| 42 | + |
| 43 | +## Alternative 2, Configuration with VCL |
| 44 | +# |
| 45 | +# Listen on port 6081, administration on localhost:6082, and forward to |
| 46 | +# one content server selected by the vcl file, based on the request. |
| 47 | +# |
| 48 | +DAEMON_OPTS="-a :80 \ |
| 49 | + -T localhost:6082 \ |
| 50 | + -f /etc/varnish/default.vcl \ |
| 51 | + -S /etc/varnish/secret \ |
| 52 | + -s malloc,1024m" |
| 53 | + |
| 54 | + |
| 55 | +## Alternative 3, Advanced configuration |
| 56 | +# |
| 57 | +# This example uses the INSTANCE variable above, which you need to uncomment. |
| 58 | +# |
| 59 | +# See varnishd(1) for more information. |
| 60 | +# |
| 61 | +# # Main configuration file. You probably want to change it :) |
| 62 | +# VARNISH_VCL_CONF=/etc/varnish/default.vcl |
| 63 | +# |
| 64 | +# # Default address and port to bind to |
| 65 | +# # Blank address means all IPv4 and IPv6 interfaces, otherwise specify |
| 66 | +# # a host name, an IPv4 dotted quad, or an IPv6 address in brackets. |
| 67 | +# VARNISH_LISTEN_ADDRESS= |
| 68 | +# VARNISH_LISTEN_PORT=6081 |
| 69 | +# |
| 70 | +# # Telnet admin interface listen address and port |
| 71 | +# VARNISH_ADMIN_LISTEN_ADDRESS=127.0.0.1 |
| 72 | +# VARNISH_ADMIN_LISTEN_PORT=6082 |
| 73 | +# |
| 74 | +# # The minimum number of worker threads to start |
| 75 | +# VARNISH_MIN_THREADS=1 |
| 76 | +# |
| 77 | +# # The Maximum number of worker threads to start |
| 78 | +# VARNISH_MAX_THREADS=1000 |
| 79 | +# |
| 80 | +# # Idle timeout for worker threads |
| 81 | +# VARNISH_THREAD_TIMEOUT=120 |
| 82 | +# |
| 83 | +# # Cache file location |
| 84 | +# VARNISH_STORAGE_FILE=/var/lib/varnish/$INSTANCE/varnish_storage.bin |
| 85 | +# |
| 86 | +# # Cache file size: in bytes, optionally using k / M / G / T suffix, |
| 87 | +# # or in percentage of available disk space using the % suffix. |
| 88 | +# VARNISH_STORAGE_SIZE=1G |
| 89 | +# |
| 90 | +# # File containing administration secret |
| 91 | +# VARNISH_SECRET_FILE=/etc/varnish/secret |
| 92 | +# |
| 93 | +# # Backend storage specification |
| 94 | +# VARNISH_STORAGE="file,${VARNISH_STORAGE_FILE},${VARNISH_STORAGE_SIZE}" |
| 95 | +# |
| 96 | +# # Default TTL used when the backend does not specify one |
| 97 | +# VARNISH_TTL=120 |
| 98 | +# |
| 99 | +# # DAEMON_OPTS is used by the init script. If you add or remove options, make |
| 100 | +# # sure you update this section, too. |
| 101 | +# DAEMON_OPTS="-a ${VARNISH_LISTEN_ADDRESS}:${VARNISH_LISTEN_PORT} \ |
| 102 | +# -f ${VARNISH_VCL_CONF} \ |
| 103 | +# -T ${VARNISH_ADMIN_LISTEN_ADDRESS}:${VARNISH_ADMIN_LISTEN_PORT} \ |
| 104 | +# -t ${VARNISH_TTL} \ |
| 105 | +# -w ${VARNISH_MIN_THREADS},${VARNISH_MAX_THREADS},${VARNISH_THREAD_TIMEOUT} \ |
| 106 | +# -S ${VARNISH_SECRET_FILE} \ |
| 107 | +# -s ${VARNISH_STORAGE}" |
| 108 | +# |
| 109 | + |
| 110 | + |
| 111 | +## Alternative 4, Do It Yourself |
| 112 | +# |
| 113 | +# DAEMON_OPTS="" |
0 commit comments