tls-cert-update

0.1.2 • Public • Published

TLS Cert Update

Reads files used by tls from disk or http and updates them when they expires.

This is done by using the SNICallback in tls.

For local files fs.watch is used and for remote http files we look at the http cache headers. Look at file-expires for details.

Usage

var tcu = require('tls-cert-update')
  , tls = require('tls')
 
tcu ( { key: '/path/to/key',
      , cert: '/path/to/cert',
      , ca: [ 'http://ca.example.com/my-root-ca.crt'
            , 'http://ca.example.com/my-other-ca.crt'
            ]
      , crl:[ 'http://ca.example.com/my-root-ca.crl'
            , 'http://ca.example.com/my-other-ca.crl'
            ]
      }
    , function(err, options) {
        if (err) throw err
 
        tls.createServer(options, function(socket) {
          socket.pipe(socket)
        })
      }
    )

Install

npm install tls-cert-update

Licence

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i tls-cert-update

Weekly Downloads

0

Version

0.1.2

License

MIT

Last publish

Collaborators

  • tellnes