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
1 changed files with 4 additions and 0 deletions

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
{