Skip to main content

One post tagged with "istio"

View All Tags

· One min read
Innocence

HTTP/1.0 版本

Istio 使用 Envoy 转发 HTTP 请求,而 Envoy 默认要求使用 HTTP/1.1 或 HTTP/2,当客户端使用 HTTP/1.0 时会返回426 low version

nginx 场景

用 nginx 进行proxy_pass反向代理,默认会用 HTTP/1.0,可以指定proxy_http_version为 1.1

server {
...
location /xxx/ {
proxy_http_version 1.1;
proxy_set_header Connection "";
}
}