add missing setting-strings for new acme-version setting; allow using let's encrypt with wildcard-alias when using ACME-v2

Signed-off-by: Michael Kaufmann (d00p) <d00p@froxlor.org>
This commit is contained in:
Michael Kaufmann (d00p)
2018-01-09 14:56:41 +01:00
parent d40d1f30b6
commit b2b9d4e31a
4 changed files with 10 additions and 6 deletions

View File

@@ -681,8 +681,8 @@ if ($page == 'overview') {
$letsencrypt = '0';
}
// We can't enable let's encrypt for wildcard - domains
if ($iswildcarddomain == '1' && $letsencrypt == '1') {
// We can't enable let's encrypt for wildcard - domains when using acme-v1
if ($iswildcarddomain == '1' && $letsencrypt == '1' && Settings::Get('system.leapiversion') == '1') {
standard_error('nowildcardwithletsencrypt');
}