Nginx proxy_pass 使用 http2 时丢失标头

Nginx proxy_pass 使用 http2 时丢失标头

我遇到了一个问题,在 nginx 上使用 http2 协议时,nginx 会丢失后端的标头(常规 http 到 Wildfly 10 后端)。当删除 http2 参数时,以下配置有效,当启用 http2 参数时,前端似乎可以工作,但后端不会从客户端收到任何标头。我还尝试添加:proxy_http_version 1.1 -parameter,但没有效果。

nginx 到后端的连接是否也需要使用 http2 协议来传递标头?据我了解,在 nginx 前端上只使用 http2 是一种常见用例。

upstream backend {
   # Use IP Hash for session persistence
   ip_hash;
   # List of Wildfly application servers
   server  backend:8080;
}

server {
   listen 80;
   return 301 https://$host$request_uri;
}

server {
   listen 443 ssl http2;
   server_name site.domain.com;

   keepalive_timeout   70;

   # Proxy settings
   proxy_read_timeout 120;
   proxy_set_header Host $http_host;
   proxy_pass_request_headers on;
   underscores_in_headers on;

   # SSL settings
   ssl  on;
   ssl_certificate      /etc/ssl/cert.crt;
   ssl_certificate_key  /etc/ssl/key.key;

   ssl_session_cache  builtin:1000  shared:SSL:10m;
   ssl_session_timeout 30m;
   ssl_protocols  TLSv1.2;
   ssl_ciphers HIGH:!aNULL:!eNULL:!EXPORT:!CAMELLIA:!DES:!MD5:!PSK:!RC4;
   ssl_prefer_server_ciphers on;

   location / {
      return 404;
   }
   location /WebContext {
      proxy_pass http://backend;
  }
}

相关内容