| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2025-12-08 | Proxy: added HTTP/2 proxy module. | Zhidao HONG | 1 | -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-08 | Proxy: refactored for HTTP/2 support. | Roman Arutyunyan | 1 | -0/+123 | |
