Built-in Webserver
We use hypercorn
as Conreq's production-grade webserver. This webserver can be directly exposed to the internet. For more information beyond what is in this guide, check out the hypercorn
documentation.
The Conreq webserver can be modified through a hypercorn.toml
file.
-
Create a
hypercorn.toml
file within your Conreq data directory (such as./conreq/data/hypercorn.toml
) -
Populate this
toml
file with any property in thehypercorn
's documentation. For example...1 2 3 4 5
bind = "0.0.0.0:5357" h11_max_incomplete_size = 4 keep_alive_timeout = 20 use_reloader = true workers = 20