16 lines
327 B
Puppet
16 lines
327 B
Puppet
class nginxproxy::authproxy {
|
|
file { $nginxproxy::auth_ldap_config:
|
|
ensure => file,
|
|
content => epp('nginxproxy/auth-ldap.py.epp', {
|
|
'params' => $nginxproxy::auth_ldap_params
|
|
}
|
|
),
|
|
mode => '0644',
|
|
}
|
|
|
|
#package { 'nginx-auth-ldap':
|
|
# ensure => 'present',
|
|
# provider => 'pip',
|
|
#}
|
|
}
|