Compare commits

...

2 Commits

Author SHA1 Message Date
9e283e427c Fix viewing apps by blob ID URL.
All checks were successful
Build Tilde Friends / Build-All (push) Successful in 16m18s
2024-09-16 12:45:06 -04:00
133ba31d66 c-ares 1.33.1. 2024-09-15 08:57:22 -04:00
2 changed files with 2 additions and 1 deletions

2
deps/c-ares vendored

@ -1 +1 @@
Subproject commit caffa5ffb3826cf0926405793361bbad11db3268
Subproject commit 27b98d96eff6122fb981e338bddef3d6a57d8d44

View File

@ -1689,6 +1689,7 @@ void tf_httpd_register(JSContext* context)
tf_http_add_handler(http, "/static/*", _httpd_endpoint_static, NULL, task);
tf_http_add_handler(http, "/.well-known/*", _httpd_endpoint_static, NULL, task);
tf_http_add_handler(http, "/~*/*/", _httpd_endpoint_static, NULL, task);
tf_http_add_handler(http, "/&*.sha256/", _httpd_endpoint_static, NULL, task);
tf_http_add_handler(http, "/robots.txt", _httpd_endpoint_robots_txt, NULL, NULL);
tf_http_add_handler(http, "/debug", _httpd_endpoint_debug, NULL, task);