@@ -53,20 +53,21 @@ Some systems require you to `sudo` before running services on certain ports (lik
5353
5454```
5555stubby [-a <port>] [-c <file>] [-d <file>] [-h] [-k <file>] [-l <hostname>] [-p <file>] [-q]
56- [-s <port>] [-t <port>] [-v] [-w]
57-
58- -a, --admin <port> Port for admin portal. Defaults to 8889.
59- -c, --cert <file> Certificate file. Use with --key.
60- -d, --data <file> Data file to pre-load endoints. YAML or JSON format.
61- -h, --help This help text.
62- -k, --key <file> Private key file. Use with --cert.
63- -l, --location <hostname> Hostname at which to bind stubby.
64- -q, --quiet Prevent stubby from printing to the console.
65- -p, --pfx <file> PFX file. Ignored if used with --key/--cert
66- -s, --stubs <port> Port for stubs portal. Defaults to 8882.
67- -t, --tls <port> Port for https stubs portal. Defaults to 7443.
68- -v, --version Prints stubby's version number.
69- -w, --watch Auto-reload data file when edits are made.
56+ [-s <port>] [-t <port>] [-v] [-w] [-H]
57+
58+ -a, --admin <port> Port for admin portal. Defaults to 8889.
59+ -c, --cert <file> Certificate file. Use with --key.
60+ -d, --data <file> Data file to pre-load endoints. YAML or JSON format.
61+ -h, --help This help text.
62+ -k, --key <file> Private key file. Use with --cert.
63+ -l, --location <hostname> Hostname at which to bind stubby.
64+ -q, --quiet Prevent stubby from printing to the console.
65+ -p, --pfx <file> PFX file. Ignored if used with --key/--cert
66+ -s, --stubs <port> Port for stubs portal. Defaults to 8882.
67+ -t, --tls <port> Port for https stubs portal. Defaults to 7443.
68+ -v, --version Prints stubby's version number.
69+ -w, --watch Auto-reload data file when edits are made.
70+ -H, --case-sensitive-headers Do not normalize response headers to lower-case.
7071```
7172
7273When used from the command-line, ` stubby ` responds to the ` SIGHUP ` signal to reload its configuration.
@@ -671,6 +672,7 @@ What can I do with it, you ask? Read on!
671672 * `quiet`: defaults to `true`. Pass in `false` to have console output (if available)
672673 * `_httpsOptions`: additional options to pass to the [underlying tls
673674 server](http://nodejs.org/api/tls.html#tls_tls_createserver_options_secureconnectionlistener).
675+ * `caseSensitiveHeaders`: if false (the default), all response headers are lower-cased.
674676* `callback`: takes one parameter: the error message (if there is one), undefined otherwise
675677
676678# ### start([callback])
0 commit comments