const struct mime_type mime_types[] = {
{"image/jpeg", {".jpg", ".jpeg", ".jpe", ".jfif", 0}},
{"image/jpg", {".jpg", ".jpeg", ".jpe", ".jfif", 0}},
{"image/png", {".png", 0}},
{"image/apng", {".png", ".apng", 0}},
{"image/gif", {".gif", 0}},
{"image/webp", {".webp", 0}},
{"image/avif", {".avif", ".avifs", 0}},
{"image/jxl", {".jxl", 0}},
{"video/webm", {".webm", 0}},
{"video/ogg", {".ogv", 0}},
{"application/pdf", {".pdf", 0}},
{"text/plain", {".txt", 0}},
{"text/css", {".css", 0}},
{"text/javascript", {".js", 0}},
{"text/html", {".html", ".html", 0}},
{"text/xml", {".xml", 0}},
{"image/svg+xml", {".svg", 0}},
{0}
};
const char *allowed_mime[] = {
"image/jpeg", "image/jpg", "image/png", "image/apng", "image/gif", "image/webp", "image/avif", "image/jxl", "video/webm", "video/ogg", "application/pdf", 0
};