certsd 0.6.1

CertsD - automated, asynchronous LE certificate issuer.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

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

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

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

   location / {
       deny  all;
   }
}
```