Update manual pages

This commit is contained in:
Tatsuhiro Tsujikawa 2018-02-22 16:14:34 +09:00
parent e70195ae91
commit 5eac3c9025
5 changed files with 43 additions and 6 deletions

View File

@ -1,6 +1,6 @@
.\" Man page generated from reStructuredText. .\" Man page generated from reStructuredText.
. .
.TH "H2LOAD" "1" "Feb 02, 2018" "1.30.0" "nghttp2" .TH "H2LOAD" "1" "Feb 22, 2018" "1.31.0-DEV" "nghttp2"
.SH NAME .SH NAME
h2load \- HTTP/2 benchmarking tool h2load \- HTTP/2 benchmarking tool
. .

View File

@ -1,6 +1,6 @@
.\" Man page generated from reStructuredText. .\" Man page generated from reStructuredText.
. .
.TH "NGHTTP" "1" "Feb 02, 2018" "1.30.0" "nghttp2" .TH "NGHTTP" "1" "Feb 22, 2018" "1.31.0-DEV" "nghttp2"
.SH NAME .SH NAME
nghttp \- HTTP/2 client nghttp \- HTTP/2 client
. .

View File

@ -1,6 +1,6 @@
.\" Man page generated from reStructuredText. .\" Man page generated from reStructuredText.
. .
.TH "NGHTTPD" "1" "Feb 02, 2018" "1.30.0" "nghttp2" .TH "NGHTTPD" "1" "Feb 22, 2018" "1.31.0-DEV" "nghttp2"
.SH NAME .SH NAME
nghttpd \- HTTP/2 server nghttpd \- HTTP/2 server
. .

View File

@ -1,6 +1,6 @@
.\" Man page generated from reStructuredText. .\" Man page generated from reStructuredText.
. .
.TH "NGHTTPX" "1" "Feb 02, 2018" "1.30.0" "nghttp2" .TH "NGHTTPX" "1" "Feb 22, 2018" "1.31.0-DEV" "nghttp2"
.SH NAME .SH NAME
nghttpx \- HTTP/2 proxy nghttpx \- HTTP/2 proxy
. .
@ -698,6 +698,14 @@ can contain multiple certificates.
.UNINDENT .UNINDENT
.INDENT 0.0 .INDENT 0.0
.TP .TP
.B \-\-verify\-client\-tolerate\-expired
Accept expired client certificate. Operator should
handle the expired client certificate by some means
(e.g., mruby script). Otherwise, this option might
cause a security risk.
.UNINDENT
.INDENT 0.0
.TP
.B \-\-client\-private\-key\-file=<PATH> .B \-\-client\-private\-key\-file=<PATH>
Path to file that contains client private key used in Path to file that contains client private key used in
backend client authentication. backend client authentication.
@ -996,7 +1004,7 @@ option. But be aware its implications.
Set the maximum number of the concurrent streams in one Set the maximum number of the concurrent streams in one
frontend HTTP/2 session. frontend HTTP/2 session.
.sp .sp
Default: \(ga\(ga 100\(ga\(ga Default: \fB100\fP
.UNINDENT .UNINDENT
.INDENT 0.0 .INDENT 0.0
.TP .TP
@ -2030,6 +2038,18 @@ Return the serial number of a client certificate.
.UNINDENT .UNINDENT
.INDENT 7.0 .INDENT 7.0
.TP .TP
.B attribute [R] tls_client_not_before
Return the start date of a client certificate in seconds since
the epoch.
.UNINDENT
.INDENT 7.0
.TP
.B attribute [R] tls_client_not_after
Return the end date of a client certificate in seconds since
the epoch.
.UNINDENT
.INDENT 7.0
.TP
.B attribute [R] tls_cipher .B attribute [R] tls_cipher
Return a TLS cipher negotiated in this connection. Return a TLS cipher negotiated in this connection.
.UNINDENT .UNINDENT

View File

@ -644,6 +644,13 @@ SSL/TLS
client certificate. The file must be in PEM format. It client certificate. The file must be in PEM format. It
can contain multiple certificates. can contain multiple certificates.
.. option:: --verify-client-tolerate-expired
Accept expired client certificate. Operator should
handle the expired client certificate by some means
(e.g., mruby script). Otherwise, this option might
cause a security risk.
.. option:: --client-private-key-file=<PATH> .. option:: --client-private-key-file=<PATH>
Path to file that contains client private key used in Path to file that contains client private key used in
@ -917,7 +924,7 @@ HTTP/2
Set the maximum number of the concurrent streams in one Set the maximum number of the concurrent streams in one
frontend HTTP/2 session. frontend HTTP/2 session.
Default: `` 100`` Default: ``100``
.. option:: --backend-http2-max-concurrent-streams=<N> .. option:: --backend-http2-max-concurrent-streams=<N>
@ -1859,6 +1866,16 @@ respectively.
Return the serial number of a client certificate. Return the serial number of a client certificate.
.. rb:attr_reader:: tls_client_not_before
Return the start date of a client certificate in seconds since
the epoch.
.. rb:attr_reader:: tls_client_not_after
Return the end date of a client certificate in seconds since
the epoch.
.. rb:attr_reader:: tls_cipher .. rb:attr_reader:: tls_cipher
Return a TLS cipher negotiated in this connection. Return a TLS cipher negotiated in this connection.