jbussdieker-varnish

UNKNOWN


Keywords
varnish, ubuntu, networking, caching
License
Apache-2.0
Install
puppet module install jbussdieker-varnish --version 0.0.2

Documentation

Varnish Module

Build Status

This module manages installing, configuring and running varnish.

Usage

Basic Usage:

class {'varnish':
  port => 80,
}

Custom VCL:

class {'varnish':
  port         => 80,
  backend_host => '127.0.0.1',
  backend_port => 8080,
  vcl_config   => template('myapp/custom.vcl.erb'),
}