Puppet Class: st2::profile::nginx

Inherits:
st2
Defined in:
manifests/profile/nginx.pp

Summary

StackStorm compatible installation of nginx and dependencies.

Overview

Examples:

Basic Usage

include st2::profile::nginx

Disable managing the nginx repo so you can manage it yourself

class { 'st2::profile::nginx':
  manage_repo => false,
}

Parameters:

  • manage_repo (Any) (defaults to: $st2::nginx_manage_repo)

    Set this to false when you have your own repository for nginx



14
15
16
17
18
19
20
21
# File 'manifests/profile/nginx.pp', line 14

class st2::profile::nginx (
  $manage_repo = $st2::nginx_manage_repo
) inherits st2 {
  class { 'nginx':
    manage_repo => $manage_repo,
    confd_purge => true,
  }
}