Increase max handler due to new handlers

This commit is contained in:
jomjol
2022-11-04 21:23:16 +01:00
parent 3b31cbbf4f
commit cbd63ad4bd
3 changed files with 26 additions and 1577 deletions

View File

@@ -464,7 +464,7 @@ httpd_handle_t start_webserver(void)
config.server_port = 80;
config.ctrl_port = 32768;
config.max_open_sockets = 5; //20210921 --> vorher 7
config.max_uri_handlers = 30; // vorher 24
config.max_uri_handlers = 40; // vorher 24, bzw. 20221104 30
config.max_resp_headers = 8;
config.backlog_conn = 5;
config.lru_purge_enable = true; // dadurch werden alte Verbindungen gekappt, falls neue benögt werden.