https://github.com/osoco/puppet-apache2_ssl
Puppet module to manage apache2 ssl conf (basic dir, different certs..)
https://github.com/osoco/puppet-apache2_ssl
Last synced: about 2 months ago
JSON representation
Puppet module to manage apache2 ssl conf (basic dir, different certs..)
- Host: GitHub
- URL: https://github.com/osoco/puppet-apache2_ssl
- Owner: osoco
- Created: 2012-05-24T16:24:48.000Z (about 14 years ago)
- Default Branch: master
- Last Pushed: 2012-10-17T10:53:08.000Z (over 13 years ago)
- Last Synced: 2025-03-05T17:28:58.703Z (over 1 year ago)
- Language: Puppet
- Size: 131 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
puppet-apache2_ssl
==================
Puppet module to manage apache2 ssl conf (basic dir, different certs..). Depends on https://github.com/osoco/puppet-apache2.
Example of usage:
class my_apache2_ssl_conf {
class { 'apache2-ssl': apache2_ssl_dir => '/var/ssl' }
apache2_ssl::certificate { "my-new-cert":
cert_name => "my-new-cert",
cert_file_source => "puppet:///modules/my_apache2_ssl_conf/my-new-cert.crt",
cert_key_file_source => "puppet:///modules/my_apache2_ssl_conf/my-new-cert.key"
}
}