certsd 0.6.1

CertsD - automated, asynchronous LE certificate issuer.
Documentation

Example Nginx configuration (to serve generated chained.pem):

server {
   listen       80;
   server_name  my.example.hub.com;
   autoindex off;

   location ~ .*/chained.pem {
       root   /Volumes/Projects/certsd;
   }

   location / {
       deny  all;
   }
}