You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An alternative way to provide the ssl certification is to export them as environment variables.
83
+
83
84
```bash
84
85
$ export BITGO_SSL_KEY=$(cat /private/cert.key)
85
86
$ export BITGO_SSL_CERT=$(cat /private/cert.cert)
@@ -217,10 +218,10 @@ BitGo Express is able to take configuration options from either command line arg
217
218
| -t | --timeout |`BITGO_TIMEOUT`| 305000 | Number of milliseconds to wait before requests made by `bitgo-express` time out. |
218
219
| -d | --debug | N/A, use `BITGO_DEBUG_NAMESPACE` instead | N/A | Enable debug output for bitgo-express. This is equivalent to passing `--debugnamespace bitgo:express`. |
219
220
| -D | --debugnamespace |`BITGO_DEBUG_NAMESPACE`| N/A | Enable debug output for a particular debug namespace. Multiple debug namespaces can be given as a comma separated list. See the [`bitgo` package README](https://github.com/BitGo/BitGoJS/blob/master/modules/bitgo/README.md#available-debug-namespaces) for a complete list of recognized options, in addition to those listed in the table below. |
220
-
| -k | --keypath |`BITGO_KEYPATH`| N/A | Path to SSL .key file (either `keypath` or `sslkey` required if running against production environment). |
221
-
| N/A | --sslkey |`BITGO_SSL_KEY`| N/A | The SSL key (either `keypath` or `sslkey` required if running against production environment).|
221
+
| -k | --keypath |`BITGO_KEYPATH`| N/A | Path to SSL .key file (either `keypath` or `sslkey` required if running against production environment). |
222
+
| N/A | --sslkey |`BITGO_SSL_KEY`| N/A | The SSL key (either `keypath` or `sslkey` required if running against production environment). |
222
223
| -c | --crtpath |`BITGO_CRTPATH`| N/A | Path to SSL .crt file (required if running against production environment). |
223
-
| N/A | --sslcert |`BITGO_SSL_CERT`| N/A | The SSL cert (either `crtpath` or `sslcert` required if running against production environment).|
224
+
| N/A | --sslcert |`BITGO_SSL_CERT`| N/A | The SSL cert (either `crtpath` or `sslcert` required if running against production environment). |
224
225
| -u | --customrooturi |`BITGO_CUSTOM_ROOT_URI`| N/A | Force a custom BitGo URI. |
225
226
| -n | --custombitcoinnetwork |`BITGO_CUSTOM_BITCOIN_NETWORK`| N/A | Force a custom BitGo network |
0 commit comments