Skip to content

Commit a639b4c

Browse files
authored
Revert "Update document to mention Nginx server-streaming support (#1403)" (#1408)
This reverts commit 55b9218.
1 parent 0350052 commit a639b4c

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

README.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ frameworks for languages such as Python, Java, and Node. For details, see the
1313
## Streaming Support
1414
gRPC-web currently supports 2 RPC modes:
1515
- Unary RPCs ([example](#make-a-unary-rpc-call))
16-
- Server-side Streaming RPCs ([example](#server-side-streaming)) (NOTE: Only when [`grpcwebtext`](#wire-format-mode) mode is used, or when [Nginx](#ecosystem) is used)
16+
- Server-side Streaming RPCs ([example](#server-side-streaming)) (NOTE: Only when [`grpcwebtext`](#wire-format-mode) mode is used.)
1717

1818
Client-side and Bi-directional streaming is not currently supported (see [streaming roadmap](doc/streaming-roadmap.md)).
1919

@@ -123,7 +123,7 @@ For more information about the gRPC-web wire format, see the
123123

124124
- `Content-type: application/grpc-web+proto`
125125
- Payload are in the binary protobuf format.
126-
- Only unary calls are supported, unless when [Nginx](#ecosystem) is used.
126+
- Only unary calls are supported.
127127

128128
## How It Works
129129

@@ -337,16 +337,15 @@ Multiple proxies support the gRPC-web protocol.
337337
$ docker-compose up -d node-server envoy commonjs-client
338338
```
339339

340-
2. [Nginx](https://www.nginx.com/) has a grpc-web module ([doc](https://nginx.org/en/docs/http/ngx_http_grpc_module.html), [announcement](https://www.nginx.com/blog/nginx-1-13-10-grpc/)). It seems to work with simple configs, according to [user feedbacks](https://github.com/grpc/grpc-web/discussions/1322)), even with server-streaming support ([user feedback](https://github.com/grpc/grpc-web/issues/1391)).
341-
342-
3. You can also try the [gRPC-web Go proxy][].
340+
2. You can also try the [gRPC-web Go proxy][].
343341

344342
```sh
345343
$ docker-compose up -d node-server grpcwebproxy binary-client
346344
```
347345

348-
4. Apache [APISIX](https://apisix.apache.org/) has also added grpc-web support, and more details can be found [here](https://apisix.apache.org/blog/2022/01/25/apisix-grpc-web-integration/).
346+
3. Apache [APISIX](https://apisix.apache.org/) has also added grpc-web support, and more details can be found [here](https://apisix.apache.org/blog/2022/01/25/apisix-grpc-web-integration/).
349347

348+
4. [Nginx](https://www.nginx.com/) has a grpc-web module ([doc](https://nginx.org/en/docs/http/ngx_http_grpc_module.html), [announcement](https://www.nginx.com/blog/nginx-1-13-10-grpc/))), and seems to work with simple configs, according to user [feedback](https://github.com/grpc/grpc-web/discussions/1322).
350349

351350
### Server Frameworks with gRPC-Web support
352351
- [Armeria (JVM)](https://armeria.dev/docs/server-grpc/#grpc-web)

0 commit comments

Comments
 (0)