Search found 2 matches

by thebitguru
Mon Sep 15, 2025 4:43 am
Forum: ESP-IDF
Topic: protocomm_httpd_config_t increasing number of uri handlers
Replies: 2
Views: 1936

Re: protocomm_httpd_config_t increasing number of uri handlers

In case if others run into this situation, here is what I did to increase the URI handlers.

// Custom server config to increase the number of slots for handlers and the stack size.
httpd_config_t httpd_config = HTTPD_DEFAULT_CONFIG();
httpd_config.max_uri_handlers = 12;
httpd_config.lru_purge ...
by thebitguru
Sun Sep 07, 2025 4:09 pm
Forum: ESP-IDF
Topic: protocomm_httpd_config_t increasing number of uri handlers
Replies: 2
Views: 1936

Re: protocomm_httpd_config_t increasing number of uri handlers

Hi,

I am in a similar situation. Did you ever figure this out?

Thank you

Go to advanced search