The Funtoo Linux project has transitioned to "Hobby Mode" and this wiki is now read-only.
Difference between revisions of "Package:Varnish"
Threesixes (talk | contribs) m (update since package had broken previous configuration syntax, and setup.) |
|||
Line 15: | Line 15: | ||
==Configuration== | ==Configuration== | ||
Configuration is controlled by /etc/varnish/default.vcl | Configuration is controlled by /etc/varnish/default.vcl & /etc/conf.d/varnishd | ||
{{file|name=/etc/varnish/default.vcl|desc=varnish configuration file|body= | {{file|name=/etc/varnish/default.vcl|desc=varnish configuration file|body= | ||
vcl 4.0; | |||
backend default { | |||
.host = "127.0.0.1"; | |||
.port = "8080"; | |||
} | |||
}} | }} | ||
{{file|name=/etc/conf.d/varnishd|desc=varnish configuration file|body= | |||
VARNISHD="/usr/sbin/varnishd" | |||
VARNISHADM="/usr/bin/varnishadm" | |||
CONFIGFILE="/etc/varnish/default.vcl" | |||
VARNISHD_OPTS="-a 127.0.0.1:80" | |||
VARNISHD_OPTS="${VARNISHD_OPTS} -u varnish -g varnish" | |||
}} | |||
Varnish will fetch data from localhost:8080 and serve accelerated proxy data on localhost:80 | |||
== BootService == | == BootService == |
Revision as of 00:39, August 20, 2014
Varnish
We welcome improvements to this page. To edit this page, Create a Funtoo account. Then log in and then click here to edit this page. See our editing guidelines to becoming a wiki-editing pro.
Varnish is a webcache & http accelerator. Varnish will either serve cached content, or retireve content from the server, and cache it. Varnish will reduce I/O pressure from webservers.
Install
Emerge
Install www-servers/varnish
root # www-servers/varnish
Configuration
Configuration is controlled by /etc/varnish/default.vcl & /etc/conf.d/varnishd
/etc/varnish/default.vcl
- varnish configuration filevcl 4.0;
backend default {
.host = "127.0.0.1";
.port = "8080";
}
/etc/conf.d/varnishd
- varnish configuration fileVARNISHD="/usr/sbin/varnishd"
VARNISHADM="/usr/bin/varnishadm"
CONFIGFILE="/etc/varnish/default.vcl"
VARNISHD_OPTS="-a 127.0.0.1:80"
VARNISHD_OPTS="${VARNISHD_OPTS} -u varnish -g varnish"
Varnish will fetch data from localhost:8080 and serve accelerated proxy data on localhost:80
BootService
To start varnish immediately:
root # rc-service varnishd start
To start varnish at boot:
root # rc-update add varnishd default
Verification
To verify that your traffic is going through varnish.
user $ curl -I https://www.varnish-cache.org/