mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-21 07:56:16 -04:00
Moved static files serving to its own file
This commit is contained in:
parent
1f2b52ba5a
commit
21300bd6c7
4 changed files with 26 additions and 20 deletions
17
node/static.js
Normal file
17
node/static.js
Normal file
|
@ -0,0 +1,17 @@
|
|||
var path = require('path');
|
||||
var minify = require('./utils/Minify');
|
||||
|
||||
exports.expressServer = function (hook_name, args, cb) {
|
||||
//serve static files
|
||||
args.app.get('/static/js/require-kernel.js', function (req, res, next) {
|
||||
res.header("Content-Type","application/javascript; charset: utf-8");
|
||||
res.write(minify.requireDefinition());
|
||||
res.end();
|
||||
});
|
||||
args.app.get('/static/*', function(req, res)
|
||||
{
|
||||
var filePath = path.normalize(__dirname + "/.." +
|
||||
req.url.replace(/\.\./g, '').split("?")[0]);
|
||||
res.sendfile(filePath, { maxAge: exports.maxAge });
|
||||
});
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue