Remove caching, creates more problems than it solves
This commit is contained in:
parent
75dd468f50
commit
a4b9427896
|
@ -225,7 +225,7 @@ exports.padJS = function(req, res)
|
||||||
pathStr = path.normalize(__dirname + "/../var/minified_pad.js");
|
pathStr = path.normalize(__dirname + "/../var/minified_pad.js");
|
||||||
}
|
}
|
||||||
|
|
||||||
res.sendfile(pathStr, { maxAge: server.maxAge });
|
res.sendfile(pathStr);
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
//minifying is disabled, so load the files with jquery
|
//minifying is disabled, so load the files with jquery
|
||||||
|
|
|
@ -32,8 +32,6 @@ var path = require('path');
|
||||||
var minify = require('./minify');
|
var minify = require('./minify');
|
||||||
|
|
||||||
var serverName = "Etherpad-Lite ( http://j.mp/ep-lite )";
|
var serverName = "Etherpad-Lite ( http://j.mp/ep-lite )";
|
||||||
//cache a week
|
|
||||||
exports.maxAge = 1000*60*60*24*1;
|
|
||||||
|
|
||||||
async.waterfall([
|
async.waterfall([
|
||||||
//initalize the database
|
//initalize the database
|
||||||
|
@ -56,7 +54,7 @@ async.waterfall([
|
||||||
{
|
{
|
||||||
res.header("Server", serverName);
|
res.header("Server", serverName);
|
||||||
var filePath = path.normalize(__dirname + "/.." + req.url.split("?")[0]);
|
var filePath = path.normalize(__dirname + "/.." + req.url.split("?")[0]);
|
||||||
res.sendfile(filePath, { maxAge: exports.maxAge });
|
res.sendfile(filePath);
|
||||||
});
|
});
|
||||||
|
|
||||||
//serve minified files
|
//serve minified files
|
||||||
|
@ -81,7 +79,7 @@ async.waterfall([
|
||||||
{
|
{
|
||||||
res.header("Server", serverName);
|
res.header("Server", serverName);
|
||||||
var filePath = path.normalize(__dirname + "/../static/pad.html");
|
var filePath = path.normalize(__dirname + "/../static/pad.html");
|
||||||
res.sendfile(filePath, { maxAge: exports.maxAge });
|
res.sendfile(filePath);
|
||||||
});
|
});
|
||||||
|
|
||||||
//serve timeslider.html under /p/$padname/timeslider
|
//serve timeslider.html under /p/$padname/timeslider
|
||||||
|
@ -89,7 +87,7 @@ async.waterfall([
|
||||||
{
|
{
|
||||||
res.header("Server", serverName);
|
res.header("Server", serverName);
|
||||||
var filePath = path.normalize(__dirname + "/../static/timeslider.html");
|
var filePath = path.normalize(__dirname + "/../static/timeslider.html");
|
||||||
res.sendfile(filePath, { maxAge: exports.maxAge });
|
res.sendfile(filePath);
|
||||||
});
|
});
|
||||||
|
|
||||||
//serve index.html under /
|
//serve index.html under /
|
||||||
|
@ -97,7 +95,7 @@ async.waterfall([
|
||||||
{
|
{
|
||||||
res.header("Server", serverName);
|
res.header("Server", serverName);
|
||||||
var filePath = path.normalize(__dirname + "/../static/index.html");
|
var filePath = path.normalize(__dirname + "/../static/index.html");
|
||||||
res.sendfile(filePath, { maxAge: exports.maxAge });
|
res.sendfile(filePath);
|
||||||
});
|
});
|
||||||
|
|
||||||
//serve robots.txt
|
//serve robots.txt
|
||||||
|
@ -105,7 +103,7 @@ async.waterfall([
|
||||||
{
|
{
|
||||||
res.header("Server", serverName);
|
res.header("Server", serverName);
|
||||||
var filePath = path.normalize(__dirname + "/../static/robots.txt");
|
var filePath = path.normalize(__dirname + "/../static/robots.txt");
|
||||||
res.sendfile(filePath, { maxAge: exports.maxAge });
|
res.sendfile(filePath);
|
||||||
});
|
});
|
||||||
|
|
||||||
//serve favicon.ico
|
//serve favicon.ico
|
||||||
|
@ -113,7 +111,7 @@ async.waterfall([
|
||||||
{
|
{
|
||||||
res.header("Server", serverName);
|
res.header("Server", serverName);
|
||||||
var filePath = path.normalize(__dirname + "/../static/favicon.ico");
|
var filePath = path.normalize(__dirname + "/../static/favicon.ico");
|
||||||
res.sendfile(filePath, { maxAge: exports.maxAge });
|
res.sendfile(filePath);
|
||||||
});
|
});
|
||||||
|
|
||||||
//let the server listen
|
//let the server listen
|
||||||
|
|
Loading…
Reference in New Issue