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:
@@ -633,8 +633,8 @@ if ($page == 'domains' || $page == 'overview') {
|
|||||||
$ocsp_stapling = 0;
|
$ocsp_stapling = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// We can't enable let's encrypt for wildcard - domains
|
// We can't enable let's encrypt for wildcard - domains if using acme-v1
|
||||||
if ($serveraliasoption == '0' && $letsencrypt == '1') {
|
if ($serveraliasoption == '0' && $letsencrypt == '1' && Settings::Get('system.leapiversion') == '1') {
|
||||||
standard_error('nowildcardwithletsencrypt');
|
standard_error('nowildcardwithletsencrypt');
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1511,8 +1511,8 @@ if ($page == 'domains' || $page == 'overview') {
|
|||||||
$ocsp_stapling = 0;
|
$ocsp_stapling = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// We can't enable let's encrypt for wildcard domains
|
// We can't enable let's encrypt for wildcard domains when using acme-v1
|
||||||
if ($serveraliasoption == '0' && $letsencrypt == '1') {
|
if ($serveraliasoption == '0' && $letsencrypt == '1' && Settings::Get('system.leapiversion') == '1') {
|
||||||
standard_error('nowildcardwithletsencrypt');
|
standard_error('nowildcardwithletsencrypt');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -681,8 +681,8 @@ if ($page == 'overview') {
|
|||||||
$letsencrypt = '0';
|
$letsencrypt = '0';
|
||||||
}
|
}
|
||||||
|
|
||||||
// We can't enable let's encrypt for wildcard - domains
|
// We can't enable let's encrypt for wildcard - domains when using acme-v1
|
||||||
if ($iswildcarddomain == '1' && $letsencrypt == '1') {
|
if ($iswildcarddomain == '1' && $letsencrypt == '1' && Settings::Get('system.leapiversion') == '1') {
|
||||||
standard_error('nowildcardwithletsencrypt');
|
standard_error('nowildcardwithletsencrypt');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -2088,3 +2088,5 @@ $lng['menue']['phpsettings']['fpmdaemons'] = 'PHP-FPM versions';
|
|||||||
$lng['admin']['phpsettings']['activephpconfigs'] = 'In use for php-config(s)';
|
$lng['admin']['phpsettings']['activephpconfigs'] = 'In use for php-config(s)';
|
||||||
$lng['admin']['phpsettingsforsubdomains'] = 'Apply php-config to all subdomains:';
|
$lng['admin']['phpsettingsforsubdomains'] = 'Apply php-config to all subdomains:';
|
||||||
$lng['serversettings']['phpsettingsforsubdomains']['description'] = 'If yes the chosen php-config will be updated to all subdomains';
|
$lng['serversettings']['phpsettingsforsubdomains']['description'] = 'If yes the chosen php-config will be updated to all subdomains';
|
||||||
|
$lng['serversettings']['leapiversion']['title'] = "Chose Let's Encrypt ACME implementation";
|
||||||
|
$lng['serversettings']['leapiversion']['description'] = "Chose between ACME v1 and ACME v2 implementation for Let's Encrypt. ACME v2 let's you use wildcard-certificates.";
|
||||||
|
|||||||
@@ -1739,3 +1739,5 @@ $lng['menue']['phpsettings']['fpmdaemons'] = 'PHP-FPM Versionen';
|
|||||||
$lng['admin']['phpsettings']['activephpconfigs'] = 'In Verwendung für PHP-Konfiguration(en)';
|
$lng['admin']['phpsettings']['activephpconfigs'] = 'In Verwendung für PHP-Konfiguration(en)';
|
||||||
$lng['admin']['phpsettingsforsubdomains'] = 'PHP-Config für alle Subdomains übernehmen:';
|
$lng['admin']['phpsettingsforsubdomains'] = 'PHP-Config für alle Subdomains übernehmen:';
|
||||||
$lng['serversettings']['phpsettingsforsubdomains']['description'] = 'Wenn ja, wird die gewählte PHP-Config für alle Subdomains übernommen';
|
$lng['serversettings']['phpsettingsforsubdomains']['description'] = 'Wenn ja, wird die gewählte PHP-Config für alle Subdomains übernommen';
|
||||||
|
$lng['serversettings']['leapiversion']['title'] = "Wähle Let's Encrypt ACME Implementierung";
|
||||||
|
$lng['serversettings']['leapiversion']['description'] = "Wähle zwischen ACME v1 und ACME v2 Implementierung von Let's Encrypt. ACME v2 erlaubt Wildcard-Zertifikate.";
|
||||||
|
|||||||
Reference in New Issue
Block a user