function Provision_Config_Certificate_LetsEncrypt::filename in Aegir HTTPS 7.3
Where the file generated will end up.
It is extremely important that this path is only made up of information relative to this class, and does not use drush_get_option or the d() accessor.
Overrides Provision_Config_Certificate::filename
2 calls to Provision_Config_Certificate_LetsEncrypt::filename()
- Provision_Config_Certificate_LetsEncrypt::unlink in submodules/
letsencrypt/ drush/ Provision/ Config/ Certificate/ LetsEncrypt.php - Override the unlink method.
- Provision_Config_Certificate_LetsEncrypt::write in submodules/
letsencrypt/ drush/ Provision/ Config/ Certificate/ LetsEncrypt.php - Override the write method.
File
- submodules/
letsencrypt/ drush/ Provision/ Config/ Certificate/ LetsEncrypt.php, line 20
Class
- Provision_Config_Certificate_LetsEncrypt
- A configuration file class.
Code
function filename() {
return $this->letsencrypt_config_path . '/letsencrypt.conf';
}