function Provision_Service_Certificate_LetsEncrypt::get_source_path in Aegir HTTPS 7.3
Return the path where we'll generate our certificates.
Overrides Provision_Service_Certificate::get_source_path
2 calls to Provision_Service_Certificate_LetsEncrypt::get_source_path()
- Provision_Service_Certificate_LetsEncrypt::generate_certificates in submodules/
letsencrypt/ drush/ Provision/ Service/ Certificate/ LetsEncrypt.php - Generate a self-signed certificate for the provided key.
- Provision_Service_Certificate_LetsEncrypt::get_certificate_paths in submodules/
letsencrypt/ drush/ Provision/ Service/ Certificate/ LetsEncrypt.php - Retrieve an array containing source and target paths for this https_key.
File
- submodules/
letsencrypt/ drush/ Provision/ Service/ Certificate/ LetsEncrypt.php, line 61
Class
- Provision_Service_Certificate_LetsEncrypt
- A LetsEncrypt implementation of the Certificate service type.
Code
function get_source_path($https_key) {
return "{$this->server->letsencrypt_config_path}/{$https_key}";
}