CertbotPaths class

Constructors

CertbotPaths()
factory

Properties

certbotRootDefaultPath String
no setter
certificateFile String
certificate file
final
chainFile String
final
cloudFlareSettings String
no setter
fullchainFile String
The file containing the concatenated certs.
final
hashCode int
The hash code for this object.
no setterinherited
letsEncryptConfigPath String
no setter
letsEncryptLivePath String
path to the directory where the active certificates are stored.
no setter
letsEncryptLogPath String
no setter
letsEncryptRootPath String
no setter
letsEncryptWorkPath String
no setter
logFilename String
The name of the logfile that certbot writes to. We also write our log messages to this file.
final
nginxCertPath String
no setter
nginxCertRoot String
no setter
privateKeyFile String
our private key.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
wwwPathLive String
no setter
wwwPathToAcquire String
no setter
wwwPathToOperating String
no setter

Methods

certificatePath(String certificateRootPath) String
path to the active certificate in the live directory
certificatePathRoot(String? hostname, String domain, {required bool wildcard}) String
The root directory for the certificate files of the given hostname and domain.
fullChainPath(String certificateRootPath) String
The path to the active fullchain.pem file in the live directory.
latestCertificatePath(String? hostname, String domain, {required bool wildcard}) String
Each time certbot creates a new certificate (excluding the first one) it places it in a 'number' path.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
privateKeyPath(String certificateRootPath) String
The path to the active privatekey.pem file in the live directory
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Properties

certbotRootScopeKey → ScopeKey<String>
final
cloudFlareSettingsScopeKey → ScopeKey<String>
final
nginxCertRootScopeKey → ScopeKey<String>
final
wwwPathLiveScopeKey → ScopeKey<String>
final
wwwPathToAcquireScopeKey → ScopeKey<String>
final
wwwPathToOperatingScopeKey → ScopeKey<String>
final

Static Methods

splice(String basePath, String absolutePath) String
Adds absolutePath to basePath by treating absolutePath as a relative path. We remove the leading path separator from absolutePath
withTestScope(String testDir, Future<void> action()) Future<void>