1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-11-25 01:18:38 -05:00

HTTP server: added mime type for .yaml files

This commit is contained in:
f4exb 2018-02-18 23:37:59 +01:00
parent 4363676aec
commit 05289a6fd9

View File

@ -209,6 +209,10 @@ void StaticFileController::setContentType(QString fileName, HttpResponse& respon
{
response.setHeader("Content-Type", "application/font-otf");
}
else if (fileName.endsWith(".yaml"))
{
response.setHeader("Content-Type", "text/plain");
}
// Todo: add all of your content types
else
{