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
Copy file name to clipboardExpand all lines: docs/en_US/configuration/global_configurations.md
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -48,8 +48,19 @@ basic:
48
48
cfgStorageType: file
49
49
# If it is enabled, each REST API call will print logs
50
50
enableRestAuditLog: false
51
+
# If it is enabled, the rule functions can access the private network.
52
+
enablePrivateNet: false
51
53
```
52
54
55
+
The configuration item **enablePrivateNet** is used to specify whether the rule functions (e.g. valid func, sinks)
56
+
can access the private network (e.g. localhost, 127.0.0.1). If it is true, the private network can be accessed. Default
57
+
is false for security.
58
+
59
+
> [!WARNING]
60
+
> Since version v2.4.0, the default value of `enablePrivateNet` is `false`, which means accessing private network
61
+
> addresses is blocked by default. If your rules rely on accessing local resources (e.g., local REST services, local
62
+
> files), you MUST set this configuration to `true`.
63
+
53
64
for debug option in basic following env is valid `KUIPER__BASIC__DEBUG=true` and if used debug value will be set to true.
54
65
55
66
The configuration item **ignoreCase** is used to specify whether case is ignored in SQL processing. If it is true, the column name case of the input data can be different from that defined in SQL. If the column name case in SQL statements, stream definitions, and input data can be guaranteed to be exactly the same, it is recommended to set this value to "false" to obtain better performance. Before version 1.10, its default value was true to be compatible with standard SQL; after version 1.10, its default value was changed to false for better performance.
0 commit comments