Package:Varnish

From Funtoo
Revision as of 03:55, June 27, 2014 by Threesixes (talk | contribs) (initial commit)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Varnish

   Tip

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.

Template:InfoBox stack


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/varnish/default.vcl - varnish configuration file
# backend default {
#     .host = "127.0.0.1";
#     .port = "8080";
# }

Any traffic pointed at port 8080 will be through varnish.

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/