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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

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

View File

@ -31,6 +31,7 @@ class AcmeSh extends \Froxlor\Cron\FroxlorCron
const ACME_PROVIDER = [
'letsencrypt' => "https://acme-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"
];