greenlock-express.js/README.md

161 lines
5.6 KiB
Markdown
Raw Normal View History

2015-12-15 05:41:08 +00:00
# letsencrypt-express
2015-12-17 00:51:37 +00:00
2015-12-15 05:41:08 +00:00
Free SSL and Automatic HTTPS for node.js with Express, Connect, and other middleware systems
2015-12-16 13:09:40 +00:00
## Coming Soon
We're working on it
## In the meantime
2015-12-16 13:10:08 +00:00
See [examples/express-minimal.js](https://github.com/Daplie/node-letsencrypt/blob/master/examples/express-minimal.js)
2015-12-16 23:06:00 +00:00
2015-12-17 00:51:37 +00:00
## Install
```
npm install --save letsencrypt-express
```
## Examples
**Minimal**
```javascript
'use strict';
2015-12-17 01:20:56 +00:00
// Note: using staging server url, remove .testing() for production
2015-12-17 03:03:07 +00:00
var lex = require('letsencrypt-express').testing();
2015-12-17 00:51:37 +00:00
var express = require('express');
var app = express();
app.use('/', function (req, res) {
res.send({ success: true });
});
2015-12-17 03:03:07 +00:00
lex.create('/etc/letsencrypt', app).listen([80], [443, 5001], function () {
2015-12-17 01:20:56 +00:00
console.log("ENCRYPT __ALL__ THE DOMAINS!");
2015-12-17 00:51:37 +00:00
});
```
### More Options Exposed
```javascript
'use strict';
2015-12-17 03:03:07 +00:00
var lex = require('letsencrypt-express');
2015-12-17 00:51:37 +00:00
var express = require('express');
var app = express();
app.use('/', function (req, res) {
res.send({ success: true });
});
2015-12-17 03:03:07 +00:00
var results = lex.create({
2015-12-17 00:51:37 +00:00
configDir: '/etc/letsencrypt'
, onRequest: app
2015-12-17 01:20:56 +00:00
, server: require('letsencrypt').productionServerUrl
2015-12-17 00:51:37 +00:00
}).listen(
// you can give just the port, or expand out to the full options
[80, { port: 8080, address: 'localhost', onListening: function () { console.log('http://localhost'); } }]
// you can give just the port, or expand out to the full options
, [443, 5001, { port: 8443, address: 'localhost' }]
// this is pretty much the default onListening handler
, function onListening() {
var server = this;
var protocol = ('requestCert' in server) ? 'https': 'http';
console.log("Listening at " + protocol + '://localhost:' + this.address().port);
}
);
// In case you need access to the raw servers (i.e. using websockets)
console.log(results.plainServers);
console.log(results.tlsServers);
```
### WebSockets with Let's Encrypt
Note: you don't need to create websockets for the plain ports.
```
results.tlsServers.forEach(function (server) {
});
```
2015-12-17 03:03:07 +00:00
## API
```
LEX.create(options) // checks options and sets up defaults. returns object with `listen`
// (it was really just done this way to appeal to what people are used to seeing)
lex.listen(plain, tls, fn) // actually creates the servers and causes them to listen
LEX.createSniCallback(le) // receives an instance of letsencrypt, returns an SNICallback handler for https.createServer()
LEX.getChallenge(opts, hostname, key cb) // uses `opts.webrootPath` to read from the filesystem
```
2015-12-16 23:06:00 +00:00
## Options
If any of these values are `undefined` or `null` the will assume use reasonable defaults.
Partially defined values will be merged with the defaults.
Setting the value to `false` will, in many cases (as documented), disable the defaults.
```
2015-12-17 01:20:56 +00:00
configDir: string // string the letsencrypt configuration path (de facto /etc/letsencrypt)
//
// default os.homedir() + '/letsencrypt/etc'
2015-12-17 00:51:37 +00:00
2015-12-16 23:06:00 +00:00
webrootPath: string // string a path to a folder where temporary challenge files will be stored and read
2015-12-17 01:20:56 +00:00
//
// default os.tmpdir() + '/acme-challenge'
2015-12-16 23:06:00 +00:00
getChallenge: func | false // false do not handle getChallenge
//
// func Example:
//
// default function (defaults, hostname, key, cb) {
// var filename = path.join(defaults.webrootPath.replace(':hostname', hostname), key);
// fs.readFile(filename, 'ascii', function (cb, text) {
// cb(null, text);
// })
// }
httpsOptions: object // object will be merged with internal defaults and passed to https.createServer()
// { pfx, key, cert, passphrase, ca, ciphers, rejectUnauthorized, secureProtocol }
// See https://nodejs.org/api/https.html
// Note: if SNICallback is specified, it will be run *before*
// the internal SNICallback that manages automated certificates
//
// default uses a localhost cert and key to prevent https.createServer() from throwing an error
// and also uses our SNICallback, which manages certificates
sniCallback: func // func replace the default sniCallback handler (which manages certificates) with your own
2015-12-17 00:51:37 +00:00
letsencrypt: object // object configure the letsencrypt object yourself and pass it in directly
//
// default we create the letsencrypt object using parameters you specify
2015-12-17 01:20:56 +00:00
server: url // url use letsencrypt.productionServerUrl (i.e. https://acme-v01.api.letsencrypt.org/directory)
// or letsencrypt.stagingServerUrl (i.e. https://acme-staging.api.letsencrypt.org/directory)
//
// default production
2015-12-16 23:06:00 +00:00
```
2015-12-17 00:51:37 +00:00
## Heroku?
This doesn't work on heroku because heroku uses a proxy with built-in https
(which is a smart thing to do) and besides, they want you to pay big bucks
for https. (hopefully not for long?...)