From f8712ca211575bdaf2e373847484b97595d754a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Mon, 12 Jun 2023 17:44:32 +0200 Subject: Add apache authenticator. --- functions/conf/apache.pp | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 functions/conf/apache.pp (limited to 'functions/conf/apache.pp') diff --git a/functions/conf/apache.pp b/functions/conf/apache.pp new file mode 100644 index 0000000..f51e9c1 --- /dev/null +++ b/functions/conf/apache.pp @@ -0,0 +1,25 @@ +# @summary Return hash appropriate for an `apache::vhost` +# @param cert_name +# Which certificate should be checked and used. +# @return +# A hash applicable to me used as the parameters of an +# `apache::vhost`. If SSL is configured for this domain, then SSL +# configuration is returned, otherwise non-SSL configuration is +# returned. +function letsencrypt::conf::apache( + String $cert_name, +) >> Letsencrypt::Ssl_conf::Nginx { + $cert_path = $facts['letsencrypt_directory'][$cert_name] + if $cert_path == undef { + { + ssl => false, + } + } else { + { + ssl => true, + ssl_cert => "${cert_path}/cert.pem", + ssl_key => "${cert_path}/privkey.pem", + ssl_chain => "${cert_path}/fullchain.pem", + } + } +} -- cgit v1.2.3