Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

✨ Config option to configure the number of connections to have in the reqwest pool #552

Merged
merged 9 commits into from
Sep 30, 2024
3 changes: 1 addition & 2 deletions websurfx/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,8 @@ rate_limiter = {
number_of_requests = 20, -- The number of request that are allowed within a provided time limit.
time_limit = 3, -- The time limit in which the quantity of requests that should be accepted.
}
-- Set whether the server will use an adaptive/dynamic HTTPS window size, see https://httpwg.org/specs/rfc9113.html#fc-principles
neon-mmd marked this conversation as resolved.
Show resolved Hide resolved
https_adaptive_window_size = false

number_of_https_connections = 10 -- the number of https connections that should be available in the connection pool.
-- ### Search ###
-- Filter results based on different levels. The levels provided are:
-- {{
Expand Down
Loading