jialechan commented on issue #11543:
URL: https://github.com/apache/apisix/issues/11543#issuecomment-2367429559
i am try to deploy apisix by docker, and h2c not wokring too:
**step one: setup apisix by docker**
```shell
docker run -d --name apache-apisix \
-p 9080:9080 \
-e APISIX_STAND_ALONE=true \
apache/apisix
```
**stop two: setup route**
```shell
docker exec -i apache-apisix sh -c 'cat > /usr/local/apisix/conf/apisix.yaml
<<_EOC_
routes:
-
id: httpbin
uri: /*
upstream:
nodes:
"nghttp2.org": 1
type: roundrobin
#END
_EOC_'
```
**step three: test**
```shell
curl -I --http2 http://localhost:9080
curl -I --http2 http://nghttp2.org
```

**apisix h2c not working...**
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]