nghttpx: Clean up metavar

This commit is contained in:
Tatsuhiro Tsujikawa 2015-01-13 22:39:35 +09:00
parent 956c11388c
commit c48a6e73e8
1 changed files with 10 additions and 10 deletions

View File

@ -791,8 +791,7 @@ Connections:
IPv6. IPv6.
Default: )" << get_config()->host.get() << "," Default: )" << get_config()->host.get() << ","
<< get_config()->port << R"( << get_config()->port << R"(
--backlog=<NUM> Set listen backlog size. If -1 is given, --backlog=<N> Set listen backlog size.
libevent will choose suitable value.
Default: )" << get_config()->backlog << R"( Default: )" << get_config()->backlog << R"(
--backend-ipv4 Resolve backend hostname to IPv4 address only. --backend-ipv4 Resolve backend hostname to IPv4 address only.
--backend-ipv6 Resolve backend hostname to IPv6 address only. --backend-ipv6 Resolve backend hostname to IPv6 address only.
@ -813,7 +812,7 @@ Connections:
--backend-write-timeout options. --backend-write-timeout options.
Performance: Performance:
-n, --workers=<CORES> -n, --workers=<N>
Set the number of worker threads. Set the number of worker threads.
Default: )" << get_config()->num_worker << R"( Default: )" << get_config()->num_worker << R"(
--read-rate=<SIZE> --read-rate=<SIZE>
@ -860,11 +859,12 @@ Performance:
means write burst size is unlimited. Not means write burst size is unlimited. Not
implemented yet. implemented yet.
Default: )" << get_config()->worker_write_burst << R"( Default: )" << get_config()->worker_write_burst << R"(
--worker-frontend-connections=<NUM> --worker-frontend-connections=<N>
Set maximum number of simultaneous connections Set maximum number of simultaneous connections
frontend accepts. Setting 0 means unlimited. frontend accepts. Setting 0 means unlimited.
Default: 0 Default: )" << get_config()->worker_frontend_connections
--backend-http1-connections-per-host=<NUM> << R"(
--backend-http1-connections-per-host=<N>
Set maximum number of backend concurrent HTTP/1 Set maximum number of backend concurrent HTTP/1
connections per host. This option is meaningful connections per host. This option is meaningful
when -s option is used. To limit the number of when -s option is used. To limit the number of
@ -872,7 +872,7 @@ Performance:
--backend-http1-connections-per-frontend. --backend-http1-connections-per-frontend.
Default: )" Default: )"
<< get_config()->downstream_connections_per_host << R"( << get_config()->downstream_connections_per_host << R"(
--backend-http1-connections-per-frontend=<NUM> --backend-http1-connections-per-frontend=<N>
Set maximum number of backend concurrent HTTP/1 Set maximum number of backend concurrent HTTP/1
connections per frontend. This option is only connections per frontend. This option is only
used for default mode. 0 means unlimited. To used for default mode. 0 means unlimited. To
@ -942,7 +942,7 @@ SSL/TLS:
certificates. If the linked OpenSSL is certificates. If the linked OpenSSL is
configured to load system wide certificates, they configured to load system wide certificates, they
are loaded at startup regardless of this option. are loaded at startup regardless of this option.
--private-key-passwd-file=<FILEPATH> --private-key-passwd-file=<PATH>
Path to file that contains password for the Path to file that contains password for the
server's private key. If none is given and the server's private key. If none is given and the
private key is password protected it'll be private key is password protected it'll be
@ -989,7 +989,7 @@ SSL/TLS:
only and any white spaces are treated as a part only and any white spaces are treated as a part
of protocol string. of protocol string.
Default: )" << DEFAULT_TLS_PROTO_LIST << R"( Default: )" << DEFAULT_TLS_PROTO_LIST << R"(
--tls-ticket-key-file=<FILE> --tls-ticket-key-file=<PATH>
Path to file that contains 48 bytes random data Path to file that contains 48 bytes random data
to construct TLS session ticket parameters. This to construct TLS session ticket parameters. This
options can be used repeatedly to specify options can be used repeatedly to specify
@ -1020,7 +1020,7 @@ SSL/TLS:
threads. threads.
HTTP/2 and SPDY: HTTP/2 and SPDY:
-c, --http2-max-concurrent-streams=<NUM> -c, --http2-max-concurrent-streams=<N>
Set the maximum number of the concurrent streams Set the maximum number of the concurrent streams
in one HTTP/2 and SPDY session. in one HTTP/2 and SPDY session.
Default: )" << get_config()->http2_max_concurrent_streams Default: )" << get_config()->http2_max_concurrent_streams