mirror of
https://github.com/elastic/kibana.git
synced 2025-04-22 08:49:27 -04:00
This is to prevent a breaking change in a minor release of Kibana due to an underlying upgrade of Node.js to v18. The legacy provider can be disabled by removing `--openssl-legacy-provider` in `config/node.options`. [Node.js documentation](https://nodejs.org/docs/latest-v18.x/api/cli.html#--openssl-legacy-provider) [OpenSSL documentation](https://www.openssl.org/docs/man3.0/man7/OSSL_PROVIDER-legacy.html) --------- Co-authored-by: Thomas Watson <w@tson.dk>
15 lines
447 B
Text
15 lines
447 B
Text
## Node command line options
|
|
## See `node --help` and `node --v8-options` for available options
|
|
## Please note you should specify one option per line
|
|
|
|
## max size of old space in megabytes
|
|
#--max-old-space-size=4096
|
|
|
|
## do not terminate process on unhandled promise rejection
|
|
--unhandled-rejections=warn
|
|
|
|
## restore < Node 16 default DNS lookup behavior
|
|
--dns-result-order=ipv4first
|
|
|
|
## enable OpenSSL 3 legacy provider
|
|
--openssl-legacy-provider
|