diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2010-04-27 17:06:24 -0400 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2010-04-27 17:06:24 -0400 |
commit | 6b993bd567ab9d8bcec348fcabb73ef2b9439235 (patch) | |
tree | e467ffe973f0110eaddd715b093928f6650eff98 | |
parent | 1efc9eee1e346931aa5f56f3466c574ed6877b88 (diff) | |
download | pfsense-packages-6b993bd567ab9d8bcec348fcabb73ef2b9439235.tar.gz pfsense-packages-6b993bd567ab9d8bcec348fcabb73ef2b9439235.tar.bz2 pfsense-packages-6b993bd567ab9d8bcec348fcabb73ef2b9439235.zip |
Use correct variables
-rw-r--r-- | config/varnish64/varnish.inc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/config/varnish64/varnish.inc b/config/varnish64/varnish.inc index f07c423d..e99e90c1 100644 --- a/config/varnish64/varnish.inc +++ b/config/varnish64/varnish.inc @@ -191,11 +191,11 @@ backend {$backend['backendname']} { .first_byte_timeout = {$first_byte_timeout}; .connect_timeout = {$connect_timeout}; .probe = { - .url = "{$backend['probe_url']}"; - .interval = {$backend['probe_interval']}; - .timeout = {$backend['probe_timeout']}; - .window = {$backend['probe_window']}; - .threshold = {$backend['probe_threshold']}; + .url = "{$probe_url}"; + .interval = {$probe_interval}; + .timeout = {$probe_timeout}; + .window = {$probe_window}; + .threshold = {$probe_threshold}; } } |