Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/how_to_guides/configuring.rst
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,8 @@ debug ``--debug`` Enable debug mode, i.e.
and checks.
dogstatsd_tags N/A DogStatsd format tag, see
:ref:`using_statsd`.
enable_webtransport N/A Enable WebTransport support ``False``
(requires HTTP/3).
errorlog ``--error-logfile`` The target location for the error log,
``--log-file`` use `-` for stderr.
graceful_timeout ``--graceful-timeout`` Time to wait after SIGTERM or Ctrl-C 3s
Expand Down
1 change: 1 addition & 0 deletions src/hypercorn/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ class Config:
worker_class = "asyncio"
workers = 1
wsgi_max_body_size = 16 * 1024 * 1024 * BYTES
enable_webtransport = False # Enable WebTransport support in HTTP/3

def set_cert_reqs(self, value: int) -> None:
warnings.warn("Please use verify_mode instead", Warning)
Expand Down
Loading