aboutsummaryrefslogtreecommitdiff
path: root/functions/conf/nginx/location.pp
blob: a7870136bd731b826c79e772dcfc0c19fca5681f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Returns a hash to be merged into a nginx::resource::location resource.
function letsencrypt::conf::nginx::location (
  String $cert_name,
) >> Letsencrypt::Ssl_conf::Nginx::Location {
  $cert_path = $facts['letsencrypt_directory'][$cert_name]

  if $cert_path == undef {
    {
      ssl => false,
    }
  } else {
    {
      ssl      => true,
      ssl_only => true,
    }
  }
}