Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
nghttp2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
nghttp2
Commits
e0386258
Commit
e0386258
authored
Oct 08, 2016
by
Tatsuhiro Tsujikawa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update man pages
parent
cdb1d6b4
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
65 additions
and
6 deletions
+65
-6
doc/h2load.1
doc/h2load.1
+21
-1
doc/h2load.1.rst
doc/h2load.1.rst
+18
-0
doc/nghttp.1
doc/nghttp.1
+1
-1
doc/nghttpd.1
doc/nghttpd.1
+1
-1
doc/nghttpx.1
doc/nghttpx.1
+13
-2
doc/nghttpx.1.rst
doc/nghttpx.1.rst
+11
-1
No files found.
doc/h2load.1
View file @
e0386258
.\" Man page generated from reStructuredText.
.
.TH "H2LOAD" "1" "
Sep 25, 2016" "1.15.0
" "nghttp2"
.TH "H2LOAD" "1" "
Oct 08, 2016" "1.16.0-DEV
" "nghttp2"
.SH NAME
h2load \- HTTP/2 benchmarking tool
.
...
...
@@ -242,6 +242,23 @@ http/1.1 for both http and https URI.
.UNINDENT
.INDENT 0.0
.TP
.B \-\-header\-table\-size=<SIZE>
Specify decoder header table size.
.sp
Default: \fB4K\fP
.UNINDENT
.INDENT 0.0
.TP
.B \-\-encoder\-header\-table\-size=<SIZE>
Specify encoder header table size. The decoder (server)
specifies the maximum dynamic table size it accepts.
Then the negotiated dynamic table size is the minimum of
this option value and the value which server specified.
.sp
Default: \fB4K\fP
.UNINDENT
.INDENT 0.0
.TP
.B \-v, \-\-verbose
Output debug information.
.UNINDENT
...
...
@@ -256,6 +273,9 @@ Display version information and exit.
Display this help and exit.
.UNINDENT
.sp
The <SIZE> argument is an integer and an optional unit (e.g., 10K is
10 * 1024). Units are K, M and G (powers of 1024).
.sp
The <DURATION> argument is an integer and an optional unit (e.g., 1s
is 1 second and 500ms is 500 milliseconds). Units are h, m, s or ms
(hours, minutes, seconds and milliseconds, respectively). If a unit
...
...
doc/h2load.1.rst
View file @
e0386258
...
...
@@ -202,6 +202,21 @@ OPTIONS
:option:`--no-tls-proto`\=http/1.1, which effectively force
http/1.1 for both http and https URI.
.. option:: --header-table-size=<SIZE>
Specify decoder header table size.
Default: ``4K``
.. option:: --encoder-header-table-size=<SIZE>
Specify encoder header table size. The decoder (server)
specifies the maximum dynamic table size it accepts.
Then the negotiated dynamic table size is the minimum of
this option value and the value which server specified.
Default: ``4K``
.. option:: -v, --verbose
Output debug information.
...
...
@@ -216,6 +231,9 @@ OPTIONS
The <SIZE> argument is an integer and an optional unit (e.g., 10K is
10 * 1024). Units are K, M and G (powers of 1024).
The <DURATION> argument is an integer and an optional unit (e.g., 1s
is 1 second and 500ms is 500 milliseconds). Units are h, m, s or ms
(hours, minutes, seconds and milliseconds, respectively). If a unit
...
...
doc/nghttp.1
View file @
e0386258
.\" Man page generated from reStructuredText.
.
.TH "NGHTTP" "1" "
Sep 25, 2016" "1.15.0
" "nghttp2"
.TH "NGHTTP" "1" "
Oct 08, 2016" "1.16.0-DEV
" "nghttp2"
.SH NAME
nghttp \- HTTP/2 client
.
...
...
doc/nghttpd.1
View file @
e0386258
.\" Man page generated from reStructuredText.
.
.TH "NGHTTPD" "1" "
Sep 25, 2016" "1.15.0
" "nghttp2"
.TH "NGHTTPD" "1" "
Oct 08, 2016" "1.16.0-DEV
" "nghttp2"
.SH NAME
nghttpd \- HTTP/2 server
.
...
...
doc/nghttpx.1
View file @
e0386258
.\" Man page generated from reStructuredText.
.
.TH "NGHTTPX" "1" "
Sep 25, 2016" "1.15.0
" "nghttp2"
.TH "NGHTTPX" "1" "
Oct 08, 2016" "1.16.0-DEV
" "nghttp2"
.SH NAME
nghttpx \- HTTP/2 proxy
.
...
...
@@ -509,6 +509,17 @@ described in OpenSSL ciphers(1).
.UNINDENT
.INDENT 0.0
.TP
.B \-\-ecdh\-curves=<LIST>
Set supported curve list for frontend connections.
<LIST> is a colon separated list of curve NID or names
in the preference order. The supported curves depend on
the linked OpenSSL library. This function requires
OpenSSL >= 1.0.2.
.sp
Default: \fBP\-256:P\-384:P\-521\fP
.UNINDENT
.INDENT 0.0
.TP
.B \-k, \-\-insecure
Don\(aqt verify backend server\(aqs certificate if TLS is
enabled for backend connections.
...
...
@@ -1198,7 +1209,7 @@ backend server, the custom error pages are not used.
.B \-\-server\-name=<NAME>
Change server response header field value to <NAME>.
.sp
Default: \fBnghttpx nghttp2/1.1
5.0
\fP
Default: \fBnghttpx nghttp2/1.1
6.0\-DEV
\fP
.UNINDENT
.INDENT 0.0
.TP
...
...
doc/nghttpx.1.rst
View file @
e0386258
...
...
@@ -467,6 +467,16 @@ SSL/TLS
Set allowed cipher list. The format of the string is
described in OpenSSL ciphers(1).
.. option:: --ecdh-curves=<LIST>
Set supported curve list for frontend connections.
<LIST> is a colon separated list of curve NID or names
in the preference order. The supported curves depend on
the linked OpenSSL library. This function requires
OpenSSL >= 1.0.2.
Default: ``P-256:P-384:P-521``
.. option:: -k, --insecure
Don't verify backend server's certificate if TLS is
...
...
@@ -1081,7 +1091,7 @@ HTTP
Change server response header field value to <NAME>.
Default: ``nghttpx nghttp2/1.1
5.0
``
Default: ``nghttpx nghttp2/1.1
6.0-DEV
``
.. option:: --no-server-rewrite
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment