当前位置: 首页 > 工具软件 > Nghttp2 > 使用案例 >

Nghttp2之nghttpx

萧煜
2023-12-01

nghttpx是nghttp2的一个组件,可以实现http2.0请求的发送。

http2.0
http/1.1 or http2.0
http2.0
Web Browser
Nginx,Apache,etc
Nghttpx
web server

nghttpx 相关配置

user=root
workers=1
http2-proxy=yes
dns-server=8.8.8.8

# https configure
certificate-file=/path/to/cert.cert
private-key-file=/path/to/cert.key

#https configure
frontend=10.0.0.100,443;tls
backend=www.a.com,444;;proto=h2;tls
no-ocsp=yes
insecure=yes
#npn-list=h2 限制连接只使用http2
#http configure
frontend=10.0.0.200,80;no-tls
backend=www.b.com,8080;www.b.com/;dns;proto=h2;tls

#log file
accesslog-file=/path/to/accesslog-file
errorlog-file=/path/to/errorlog-file
 类似资料: