You are here

function Provision_Service_Certificate::get_source_path in Aegir HTTPS 7.3

Return the path where we'll generate our certificates.

2 methods override Provision_Service_Certificate::get_source_path()
Provision_Service_Certificate_LetsEncrypt::get_source_path in submodules/letsencrypt/drush/Provision/Service/Certificate/LetsEncrypt.php
Return the path where we'll generate our certificates.
Provision_Service_Certificate_SelfSigned::get_source_path in submodules/self_signed/drush/Provision/Service/Certificate/SelfSigned.php
Return the path where we'll generate our certificates.

File

submodules/certificate/drush/Provision/Service/Certificate.php, line 27

Class

Provision_Service_Certificate
The service type base class.

Code

function get_source_path($https_key) {

  // Default to the ~/config/ssl.d directory.
  return "{$this->server->ssld_path}/{$https_key}";
}