From 30d0fed3e34b5a70aee024f433e6727b68f31e7a Mon Sep 17 00:00:00 2001 From: PlxEV Date: Sat, 7 Jun 2025 14:56:24 +0100 Subject: [PATCH] Fix static files handler URI --- components/protocols/src/rest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/protocols/src/rest.c b/components/protocols/src/rest.c index e3cf77e..07ab98c 100755 --- a/components/protocols/src/rest.c +++ b/components/protocols/src/rest.c @@ -881,7 +881,7 @@ esp_err_t rest_init(const char *base_path) // URI handler for getting web server files httpd_uri_t common_get_uri = { - .uri = "/", + .uri = "/*", .method = HTTP_GET, .handler = rest_common_get_handler, .user_ctx = rest_context