Puppet Class: apache::mod::expires

Defined in:
manifests/mod/expires.pp

Summary

Installs and configures `mod_expires`.

Overview

Parameters:

  • expires_active (Boolean) (defaults to: true)

    Enables generation of Expires headers.

  • expires_default (Optional[String]) (defaults to: undef)

    Specifies the default algorithm for calculating expiration time using ExpiresByType syntax or interval syntax.

  • expires_by_type (Optional[Array[Hash]]) (defaults to: undef)

    Describes a set of [MIME content-types](www.iana.org/assignments/media-types/media-types.xhtml) and their expiration times. This should be used as an array of Hashes, with each Hash’s key a valid MIME content-type (i.e. ‘text/json’) and its value following valid interval syntax.

See Also:



17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# File 'manifests/mod/expires.pp', line 17

class apache::mod::expires (
  Boolean $expires_active                 = true,
  Optional[String] $expires_default       = undef,
  Optional[Array[Hash]] $expires_by_type  = undef,
) {
  include apache
  ::apache::mod { 'expires': }

  # Template uses
  # $expires_active
  # $expires_default
  # $expires_by_type
  file { 'expires.conf':
    ensure  => file,
    path    => "${apache::mod_dir}/expires.conf",
    mode    => $apache::file_mode,
    content => template('apache/mod/expires.conf.erb'),
    require => Exec["mkdir ${apache::mod_dir}"],
    before  => File[$apache::mod_dir],
    notify  => Class['apache::service'],
  }
}