smartcert/README.md
2016-06-18 15:59:03 +02:00

19 lines
560 B
Markdown

# Cert
Easily obain SSL certificates from LetsEncrypt. Supports DNS-01 challenge. TypeScript ready.
## Usage
```typescript
import {Cert} from "cert";
let myCert = new Cert({
cfEmail = "some@cloudflare.email",
cfKey = "someCloudflareApiKey",
sslDir = "someOutputPath" // NOTE: if you already have certificates, make sure you put them in here, so cert only requires the missing ones
});
myCert.getDomainCert("example.com");
```
### sslDir
to use the certificates it is important to understand what the structure of the ssl directory looks like.