Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bpholt/puppet-apache_ldap
Manages Apache conf files for Location directives that need LDAP security.
https://github.com/bpholt/puppet-apache_ldap
Last synced: 24 days ago
JSON representation
Manages Apache conf files for Location directives that need LDAP security.
- Host: GitHub
- URL: https://github.com/bpholt/puppet-apache_ldap
- Owner: bpholt
- License: other
- Created: 2013-03-24T05:58:35.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-03-24T23:02:08.000Z (over 11 years ago)
- Last Synced: 2023-03-22T16:36:38.978Z (over 1 year ago)
- Language: Puppet
- Size: 129 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
puppet-apache_ldap
===========================Manages Apache conf files for Location directives that need LDAP security.
### Example
# Set site defaults for common properties
Apache_ldap::Location {
ldap_url => 'ldap://ldap.example.com:389/OU=ORG,DC=example,DC=com?sAMAccountName?sub?(objectClass=*)',
ldap_bind_dn => 'cn=user,DC=example,DC=com',
ldap_bind_password => 'p@ssw0rd',
}
include apache_ldap
apache_ldap::location { 'test':
url => '/repository',
realm => 'My Repositories',
clone_groups => ['clone_group1','clone_group2',],
clone_users => ['clone_user1','clone_user2',],
push_groups => ['push_group1','push_group2',],
push_users => ['push_user1','push_user2',],
}