nghttpx是nghttp2的一个组件,可以实现http2.0请求的发送。
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