From 23f668c99dbd10e3c6fcc1cd189cfd72d66d9f2f Mon Sep 17 00:00:00 2001 From: Eric Mrak Date: Sat, 31 Jan 2015 15:20:44 -0800 Subject: [PATCH] Documenting _httpsOptions --- CHANGELOG.md | 1 + README.md | 2 ++ package.json | 2 +- 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dcc756b..e137ae7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ * fixes several scope-binding issues caused by the JavaScript rewrite (sorry!) * clarify use of `PUT` and the admin portal +* added `_httpsOptions` to pass through options to the underlying tls server. ## 0.2.10 diff --git a/README.md b/README.md index b21bc00..f3ca400 100644 --- a/README.md +++ b/README.md @@ -628,6 +628,8 @@ What can I do with it, you ask? Read on! * `pfx`: pfx file contents (mutually exclusive with key/cert options) * `watch`: filename to monitor and load as stubby's data when changes occur * `mute`: defaults to `true`. Pass in `false` to have console output (if available) + * `_httpsOptions`: additional options to pass to the [underlying tls + server](http://nodejs.org/api/tls.html#tls_tls_createserver_options_secureconnectionlistener). * `callback`: takes one parameter: the error message (if there is one), undefined otherwise #### start([callback]) diff --git a/package.json b/package.json index 6aba1dd..5783b82 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "stubby", "preferGlobal": true, - "version": "0.2.10", + "version": "0.2.11", "author": { "name": "Eric Mrak", "email": "mail@ericmrak.info"