LetsEncrypt middleware for Express with pluggable data store
npm install --save ten-ply-crest
ten-ply-crest is a LetsEncrypt client that does not touch the filesystem or make assumptions about your architecture. Almost every existing client stores sensitive SSL keys, certs, and challenges in the filesystem, and assumes it is running on a public-facing server.
In reality many of us these days are using a containerized architecture with a sharable, secured data store. Containers are designed to be disposable and there may be reasons to run more than one instance of a LetsEncrypt client in tandem.
Therefore, ten-ply-crest:
Store.cacheEnabled = false
)npm start
From src/server.coffee
options =
logger: console
advertise_addr: EXPRESS_APP_IP
advertise_port: EXPRESS_APP_PORT
consul_addr: CONSUL_ADDR or "127.0.0.1"
tpc = new TenPly options
app.use tpc.middleware()
> we register ourselves for route http://*/.well-known/*
< when a service registers, it registers tag ssl
> we watch the list of services tagged ssl
when this list changes, we get all these services and their tags
we keep all the tags that are urlprefix
for each domain + its subdomains
we get the unique list of domains+subdomains
if we don't have this domain in our vault list, we generate a letsencrypt cert
we store the cert in the vault with a lease 15 days before expiration, and we cache it
when the load-balancer asks for the cert we hand it the cert
MIT