Add Buypass to the list of ACME providers. (#968)

This commit is contained in:
Jens Meißner
2021-07-29 21:15:49 +02:00
committed by GitHub
parent 53401eebfb
commit 926ce427fc
2 changed files with 2 additions and 0 deletions

View File

@@ -168,6 +168,7 @@ return array(
'option_options' => array( 'option_options' => array(
'letsencrypt_test' => 'Let\'s Encrypt (Test / Staging)', 'letsencrypt_test' => 'Let\'s Encrypt (Test / Staging)',
'letsencrypt' => 'Let\'s Encrypt (Live)', 'letsencrypt' => 'Let\'s Encrypt (Live)',
'buypass' => 'Buypass (Live)',
'zerossl' => 'ZeroSSL (Live)' 'zerossl' => 'ZeroSSL (Live)'
), ),
'save_method' => 'storeSettingField' 'save_method' => 'storeSettingField'

View File

@@ -31,6 +31,7 @@ class AcmeSh extends \Froxlor\Cron\FroxlorCron
const ACME_PROVIDER = [ const ACME_PROVIDER = [
'letsencrypt' => "https://acme-v02.api.letsencrypt.org/directory", 'letsencrypt' => "https://acme-v02.api.letsencrypt.org/directory",
'letsencrypt_test' => "https://acme-staging-v02.api.letsencrypt.org/directory", 'letsencrypt_test' => "https://acme-staging-v02.api.letsencrypt.org/directory",
'buypass' => "https://api.buypass.com/acme/directory",
'zerossl' => "https://acme.zerossl.com/v2/DV90" 'zerossl' => "https://acme.zerossl.com/v2/DV90"
]; ];