We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello! I have deployed a local node and I want to be able to use the grpc-web port. How should I set it up to use it?
app.toml ###############################################################################
###############################################################################
[grpc]
enable = true
address = "0.0.0.0:9090"
max-recv-msg-size = "10485760"
max-send-msg-size = "2147483647"
[grpc-web]
The text was updated successfully, but these errors were encountered:
GH-30 grpc-web cannot be used
Sorry, something went wrong.
No branches or pull requests
Hello! I have deployed a local node and I want to be able to use the grpc-web port. How should I set it up to use it?
app.toml
###############################################################################
gRPC Configuration
###############################################################################
[grpc]
Enable defines if the gRPC server should be enabled.
enable = true
Address defines the gRPC server address to bind to.
address = "0.0.0.0:9090"
MaxRecvMsgSize defines the max message size in bytes the server can receive.
The default value is 10MB.
max-recv-msg-size = "10485760"
MaxSendMsgSize defines the max message size in bytes the server can send.
The default value is math.MaxInt32.
max-send-msg-size = "2147483647"
###############################################################################
gRPC Web Configuration
###############################################################################
[grpc-web]
GRPCWebEnable defines if the gRPC-web should be enabled.
NOTE: gRPC must also be enabled, otherwise, this configuration is a no-op.
NOTE: gRPC-Web uses the same address as the API server.
enable = true
###############################################################################
The text was updated successfully, but these errors were encountered: