bd3eaf4f5e
Co-authored-by: Kevin Pollet <pollet.kevin@gmail.com>
1.9 KiB
1.9 KiB
title | description |
---|---|
Traefik GrpcWeb Documentation | In Traefik Proxy's HTTP middleware, GrpcWeb converts a gRPC Web requests to HTTP/2 gRPC requests. Read the technical documentation. |
GrpcWeb
Converting gRPC Web requests to HTTP/2 gRPC requests. {: .subtitle }
The GrpcWeb middleware converts gRPC Web requests to HTTP/2 gRPC requests before forwarding them to the backends.
!!! tip
Please note, that Traefik needs to communicate using gRPC with the backends (h2c or HTTP/2 over TLS).
Check out the [gRPC](../../user-guides/grpc.md) user guide for more details.
Configuration Examples
labels:
- "traefik.http.middlewares.test-grpcweb.grpcweb.allowOrigins=*"
apiVersion: traefik.containo.us/v1alpha1
kind: Middleware
metadata:
name: test-grpcweb
spec:
grpcWeb:
allowOrigins:
- "*"
- "traefik.http.middlewares.test-grpcweb.grpcWeb.allowOrigins=*"
"labels": {
"traefik.http.middlewares.test-grpcweb.grpcweb.alloworigins": "*"
}
labels:
- "traefik.http.middlewares.test-grpcweb.grpcweb.alloworigins=*"
http:
middlewares:
test-grpcweb:
grpcWeb:
allowOrigins:
- "*"
[http.middlewares]
[http.middlewares.test-grpcweb.grpcWeb]
allowOrigins = ["*"]
Configuration Options
allowOrigins
The allowOrigins
contains the list of allowed origins.
A wildcard origin *
can also be configured to match all requests.
More information including how to use the settings can be found at: