Skip to content

Latest commit

 

History

History
33 lines (28 loc) · 576 Bytes

README.md

File metadata and controls

33 lines (28 loc) · 576 Bytes

Ataama Lets Encrypt

Config Example

$configs = [
    'certs' => [],
    'email' => array('[email protected]')
];

$config['certs'][] = [
    'domain' => 'example.com',
    'hosts' => ['test', '*.test']
];

$domains['example.com'] = [
    'provider' => 'godaddy',
    'domain' => 'example.com',
    'auth' => [
        'apikey' => 'apikey',
        'apisecret' => 'apisecret'
    ]
];

$domains['example.net'] = [
    'provider' => 'namecheap',
    'domain' => 'example.net',
    'auth' => [
        'apiuser' => 'apiuser',
        'apikey' => 'apikey'
    ]
];