Puppet Class: st2::profile::nginx
- Inherits:
- st2
- Defined in:
- manifests/profile/nginx.pp
Summary
StackStorm compatible installation of nginx and dependencies.Overview
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,
}
}
|