add settings to default settings.js file

pull/3931/head
Steve-Mcl 2022-12-04 11:09:15 +00:00
parent d66828aaf1
commit b5fae8bb73
1 changed files with 12 additions and 0 deletions
packages/node_modules/node-red

View File

@ -441,6 +441,8 @@ module.exports = {
* - socketReconnectTime
* - socketTimeout
* - tcpMsgQueueSize
* - tcpInAllowInboundConnections
* - udpInAllowInboundConnections
* - inboundWebSocketTimeout
* - tlsConfigDisableLocalFiles
* - webSocketNodeVerifyClient
@ -509,6 +511,16 @@ module.exports = {
*/
//tcpMsgQueueSize: 2000,
/** Permit TCP nodes to expose inbound connections. Set value to `false` to disable the inbound modes.
* defaults to true
*/
//tcpInAllowInboundConnections: true,
/** Permit UDP nodes to expose inbound connections. Set value to `false` to disable the inbound modes.
* defaults to true
*/
//udpInAllowInboundConnections: true,
/** Timeout in milliseconds for inbound WebSocket connections that do not
* match any configured node. Defaults to 5000
*/