- Module description
- Setup - The basics of getting started with getssl
- Usage - Configuration options and additional functionality
- Reference - An under-the-hood peek at what the module is doing and how
- Limitations - OS compatibility, etc.
- Development - Guide for contributing to the module
- Appendix
This Module uses srvrco's getssl bash script to obtain SSL-Certificates. The certificates can be used for various protocols like https, smtps, ldaps and so on. To get more information about srvrco's getssl script go to his site. getssl
You can use this module only to install getssl script and configure it by yourself or configure all SSL relevant parameters and let this module obtain SSL certificates for you.
This module creates folders and files under the base directory
- The base directory is
/opt/getssl/
- For each domain it creates new sub directory
$base_dir/example.com/
If you want to use this module you have to install curl
.
If you don't want to install curl manually you can install it with this module.
To install getssl you only have to include it in your manifest.
class { 'getssl': }
getssl
is modular so you can set global configuration parameters
and the local parameters will overwrite the global ones.
To configure the global configuration parameters the following code is can be
used to ensure a minimal configuration.
class { 'getssl':
account_mail => '[email protected]',
production => true,
manage_packages => true,
}
To obtain a certificate for your domain use the defined function. Following example is for nginx. But you can yous your favorite webserver e.g apache2 or lighttp.
getssl::domain { 'example.com':
acl => ['/var/nginx/default],
sub_domains => ['www.example.com', 'foo.example.com', 'bar.example.com'],
domain_check_remote => true,
production => true,
}
This example tries to get a certificate for:
example.com, www.example.com, foo.example.com, bar.example.com
This class is used to install getssl on your server and configure the global parameters.
class{ 'getssl': }
Description of parameters can be found in the appropriate .pp files
The defined type getssl::domain
is used to configure domain specific parameters. This type
tries to obtain the certificates from letsencrypt.
Description of parameters can be found in the appropriate .pp files
This module ist testet on Debian 8 Stable. Can test it under a different version or OS please make an issue to disscuse.
Note: There are some limitations to obtain SSL certificates by LetsEncrypt themselves. Please also read the documentation of LetsEncrypt. LetsEncrpyt Documentation
If you want to make improvements open a issue or make a pull request. I will add few tests to this module but i am new to this so it will take time.
A big thanks to srvrco for his perfect bash written shell script. Thank you! Thanks to the community of LetsEncrypt.