You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/config.md
+4
Original file line number
Diff line number
Diff line change
@@ -174,6 +174,9 @@ The NAT config is for transparent proxy. You'll need to [setup iptables rules](h
174
174
"alpn": [
175
175
"http/1.1"
176
176
],
177
+
"alpn_port_override" : {
178
+
"h2": 81
179
+
},
177
180
"reuse_session": true,
178
181
"session_ticket": false,
179
182
"session_timeout": 600,
@@ -215,6 +218,7 @@ The NAT config is for transparent proxy. You'll need to [setup iptables rules](h
215
218
-`cipher_tls13`: a cipher list for TLS 1.3 to use
216
219
-`prefer_server_cipher`: whether to prefer server cipher list in a connection
217
220
-`alpn`: a list of `ALPN` protocols to reply
221
+
- alpn_port_override: overrides the remote port to the specified value if an ALPN is matched. Useful for running nginx http1.1 and http2 on different ports (#226).
218
222
-`reuse_session`: whether to reuse `SSL` session
219
223
-`session_ticket`: whether to use session tickets for session resumption
220
224
-`session_timeout`: if `reuse_session` is set to `true`, specify `SSL` session timeout
0 commit comments