Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions grpc/grpc.md
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ grpc:
{% endtabs %}

{% hint style="info" %}
You can define multiple proto files in the `proto` section.
You can define multiple proto files in the `proto` section. From [>=2025.1.9], one can use glob patterns to specify multiple proto files.
{% endhint %}

After configuring the server, you can start it using the following command:
Expand Down Expand Up @@ -445,13 +445,14 @@ grpc:
# This option is required
listen: "tcp://127.0.0.1:9001"

# Proto file to use, multiply files supported [SINCE 2.6]. As of [2023.1.4], wildcards are allowed in the proto field.
# Proto file to use, multiply files supported [SINCE 2.6]. As of [2023.1.4], wildcards are allowed in the proto field and in version [>=2025.1.9] glob patterns are supported.
#
# This option is required
proto:
- "*.proto"
- "first.proto"
- "second.proto"
- "some/path/**/*.proto"

# GRPC TLS configuration
#
Expand Down