Support GET and HEAD.
This commit is contained in:
parent
a09e208b0a
commit
a5365f2547
|
@ -155,7 +155,7 @@ async.waterfall([
|
|||
});
|
||||
|
||||
//serve minified files
|
||||
app.get('/minified/:filename', minify.minifyJS);
|
||||
app.all('/minified/:filename', minify.minifyJS);
|
||||
|
||||
//checks for padAccess
|
||||
function hasPadAccess(req, res, callback)
|
||||
|
|
|
@ -85,10 +85,18 @@ function _handle(req, res, jsFilename, jsFiles) {
|
|||
res.writeHead(304, {});
|
||||
res.end();
|
||||
} else {
|
||||
if (settings.minify) {
|
||||
respondMinified();
|
||||
if (req.method == 'HEAD') {
|
||||
res.writeHead(200, {});
|
||||
res.end();
|
||||
} else if (req.method == 'GET') {
|
||||
if (settings.minify) {
|
||||
respondMinified();
|
||||
} else {
|
||||
respondRaw();
|
||||
}
|
||||
} else {
|
||||
respondRaw();
|
||||
res.writeHead(405, {'allow': 'HEAD, GET'});
|
||||
res.end();
|
||||
}
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue