bestjane opened a new issue, #11593:
URL: https://github.com/apache/apisix/issues/11593
### Description
``` upstream and http server config
upstream gateway {
server 127.0.0.1:3001;
}
server {
listen 8888;
server_name test.com;
location / {
proxy_set_header Host $host;
proxy_pass http://gateway;
}
....
}
````
```apisix config
# router
{
"uri": "/*",
"upstream_id": "xxxx",
"name": "test"
}
# upstream
{
"type": "roundrobin",
"nodes": [
{
"host": "10.105.167.63",
"port": 31380,
"weight": 1
}
]
}
```
apisix does not complete the request properly, why?
### Environment
- APISIX version (run `apisix version`):
- Operating system (run `uname -a`):
- OpenResty / Nginx version (run `openresty -V` or `nginx -V`):
- etcd version, if relevant (run `curl
http://127.0.0.1:9090/v1/server_info`):
- APISIX Dashboard version, if relevant:
- Plugin runner version, for issues related to plugin runners:
- LuaRocks version, for installation issues (run `luarocks --version`):
--
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]