Add a Uri prop to choose between production or staging CA

And default to staging
tags/smeserver-letsencrypt-client-0.2.4-1 0.1.2_el5
Daniel Berteaud 8 years ago
parent b088baa65d
commit 752f3d3a41
  1. 1
      root/etc/e-smith/db/configuration/defaults/letsencrypt/Uri
  2. 14
      root/etc/e-smith/templates/etc/letsencrypt.sh/config.sh/10Uri

@ -0,0 +1,14 @@
{
my $uri = $letsencrypt{'Uri'} || 'staging';
if ($uri =~ m{^https?://}){
$OUT .= "CA=$uri\n";
}
elsif ($uri =~ m/^(test(ing)?)|staging$/){
$OUT .= "CA=https://acme-staging.api.letsencrypt.org/directory\n";
}
elsif ($uri =~ m/^prod/){
$OUT .= "CA=https://acme-v01.api.letsencrypt.org/directory\n";
}
}
Loading…
Cancel
Save