summaryrefslogtreecommitdiffhomepage
path: root/src/http/modules/ngx_http_proxy_module.h (follow)
AgeCommit message (Collapse)AuthorFilesLines
2025-12-08Proxy: added HTTP/2 proxy module.Zhidao HONG1-0/+4
The module allows to use HTTP/2 protocol for proxying. HTTP/2 proxying is enabled by specifying "proxy_http_version 2". Example: server { listen 8000; location / { proxy_http_version 2; proxy_pass https://127.0.0.1:8443; } } server { listen 8443 ssl; http2 on; ssl_certificate certs/example.com.crt; ssl_certificate_key certs/example.com.key; location / { return 200 foo; } }
2025-12-08Proxy: refactored for HTTP/2 support.Roman Arutyunyan1-0/+123