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
8f22ff30
Commit
8f22ff30
authored
Nov 24, 2014
by
Tatsuhiro Tsujikawa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update man pages
parent
8e945518
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
74 additions
and
6 deletions
+74
-6
doc/h2load.1
doc/h2load.1
+1
-1
doc/nghttp.1
doc/nghttp.1
+9
-1
doc/nghttp.1.rst
doc/nghttp.1.rst
+12
-0
doc/nghttpd.1
doc/nghttpd.1
+1
-1
doc/nghttpx.1
doc/nghttpx.1
+25
-2
doc/nghttpx.1.rst
doc/nghttpx.1.rst
+26
-1
No files found.
doc/h2load.1
View file @
8f22ff30
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.46.4.
.TH H2LOAD "1" "November 2014" "h2load nghttp2/0.6.
6
" "User Commands"
.TH H2LOAD "1" "November 2014" "h2load nghttp2/0.6.
7-DEV
" "User Commands"
.SH NAME
h2load \- HTTP/2 benchmarking tool
.SH SYNOPSIS
...
...
doc/nghttp.1
View file @
8f22ff30
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.46.4.
.TH NGHTTP "1" "November 2014" "nghttp nghttp2/0.6.
6
" "User Commands"
.TH NGHTTP "1" "November 2014" "nghttp nghttp2/0.6.
7-DEV
" "User Commands"
.SH NAME
nghttp \- HTTP/2 experimental client
.SH SYNOPSIS
...
...
@@ -96,6 +96,10 @@ Specify decoder header table size.
Add at most <N> bytes to a frame payload as
padding. Specify 0 to disable padding.
.TP
\fB\-r\fR, \fB\-\-har=\fR<FILE>
Output HTTP transactions <FILE> in HAR format.
If '\-' is given, data is written to stdout.
.TP
\fB\-\-color\fR
Force colored log output.
.TP
...
...
@@ -105,6 +109,10 @@ Send large header to test CONTINUATION.
\fB\-\-no\-content\-length\fR
Don't send content\-length header field.
.TP
\fB\-\-no\-dep\fR
Don't send dependency based priority hint to
server.
.TP
\fB\-\-version\fR
Display version information and exit.
.TP
...
...
doc/nghttp.1.rst
View file @
8f22ff30
...
...
@@ -144,6 +144,12 @@ OPTIONS
Add at most <N> bytes to a frame payload as
padding. Specify 0 to disable padding.
.. option:: -r, --har=<FILE>
Output HTTP transactions <FILE> in HAR format.
If '-' is given, data is written to stdout.
.. option:: --color
...
...
@@ -159,6 +165,12 @@ OPTIONS
Don't send content-length header field.
.. option:: --no-dep
Don't send dependency based priority hint to
server.
.. option:: --version
...
...
doc/nghttpd.1
View file @
8f22ff30
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.46.4.
.TH NGHTTPD "1" "November 2014" "nghttpd nghttp2/0.6.
6
" "User Commands"
.TH NGHTTPD "1" "November 2014" "nghttpd nghttp2/0.6.
7-DEV
" "User Commands"
.SH NAME
nghttpd \- HTTP/2 experimental server
.SH SYNOPSIS
...
...
doc/nghttpx.1
View file @
8f22ff30
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.46.4.
.TH NGHTTPX "1" "November 2014" "nghttpx nghttp2/0.6.
6
" "User Commands"
.TH NGHTTPX "1" "November 2014" "nghttpx nghttp2/0.6.
7-DEV
" "User Commands"
.SH NAME
nghttpx \- HTTP/2 experimental proxy
.SH SYNOPSIS
...
...
@@ -220,7 +220,7 @@ most desirable protocol comes first. This is
used in both ALPN and NPN. The parameter must be
delimited by a single comma only and any white
spaces are treated as a part of protocol string.
Default: h2\-14,spdy/3.1,
spdy/3,spdy/2,
http/1.1
Default: h2\-14,spdy/3.1,http/1.1
.TP
\fB\-\-verify\-client\fR
Require and verify client certificate.
...
...
@@ -340,6 +340,29 @@ send USR1 signal to nghttpx.
Send access log to syslog. If this option is
used, \fB\-\-access\-file\fR option is ignored.
.TP
\fB\-\-accesslog\-format=\fR<FORMAT>
Specify format string for access log. The
default format is combined format. The following
variables are available:
$remote_addr: client IP address.
$time_local: local time in Common Log format.
$time_iso8601: local time in ISO 8601 format.
$request: HTTP request line.
$status: HTTP response status code.
$body_bytes_sent: the number of bytes sent to
client as response body.
$http_<VAR>: value of HTTP request header <VAR>
where '_' in <VAR> is replaced with '\-'.
$remote_port: client port.
$server_port: server port.
$request_time: request processing time in
seconds with milliseconds resolution.
$pid: PID of the running process.
$alpn: ALPN identifier of the protocol which
generates the response. For HTTP/1, ALPN is
always http/1.1, regardless of minor version.
Default: $remote_addr \- \- [$time_local] "$request" $status $body_bytes_sent "$http_referer" "$http_user_agent"
.TP
\fB\-\-errorlog\-file=\fR<PATH>
Set path to write error log. To reopen file,
send USR1 signal to nghttpx.
...
...
doc/nghttpx.1.rst
View file @
8f22ff30
...
...
@@ -309,7 +309,7 @@ SSL/TLS
used in both ALPN and NPN. The parameter must be
delimited by a single comma only and any white
spaces are treated as a part of protocol string.
Default: h2-14,spdy/3.1,
spdy/3,spdy/2,
http/1.1
Default: h2-14,spdy/3.1,http/1.1
.. option:: --verify-client
...
...
@@ -478,6 +478,31 @@ Logging
Send access log to syslog. If this option is
used, :option:`--access-file` option is ignored.
.. option:: --accesslog-format=<FORMAT>
Specify format string for access log. The
default format is combined format. The following
variables are available:
$remote_addr: client IP address.
$time_local: local time in Common Log format.
$time_iso8601: local time in ISO 8601 format.
$request: HTTP request line.
$status: HTTP response status code.
$body_bytes_sent: the number of bytes sent to
client as response body.
$http_<VAR>: value of HTTP request header <VAR>
where '_' in <VAR> is replaced with '-'.
$remote_port: client port.
$server_port: server port.
$request_time: request processing time in
seconds with milliseconds resolution.
$pid: PID of the running process.
$alpn: ALPN identifier of the protocol which
generates the response. For HTTP/1, ALPN is
always http/1.1, regardless of minor version.
Default: $remote_addr - - [$time_local] "$request" $status $body_bytes_sent "$http_referer" "$http_user_agent"
.. option:: --errorlog-file=<PATH>
...
...
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