Merge pull request #39 from ochronus/fix-content-type
Using express.static instead of custom handler
This commit is contained in:
commit
f8b65be009
28
server.js
28
server.js
@ -23,32 +23,10 @@ Fs.exists(__dirname + "/customize", function (e) {
|
|||||||
console.log("Cryptpad is customizable, see customize.dist/readme.md for details");
|
console.log("Cryptpad is customizable, see customize.dist/readme.md for details");
|
||||||
});
|
});
|
||||||
|
|
||||||
var staticOpts = {
|
|
||||||
index: 'index.html'
|
|
||||||
};
|
|
||||||
|
|
||||||
var handleFile = function (target, res, fallback, next) {
|
|
||||||
var stream = Fs.createReadStream(target).on('error', function (e) {
|
|
||||||
if (fallback) {
|
|
||||||
handleFile(fallback, res, undefined, next);
|
|
||||||
return;
|
|
||||||
} else {
|
|
||||||
next();
|
|
||||||
}
|
|
||||||
}).on('end', function () {
|
|
||||||
res.end();
|
|
||||||
});
|
|
||||||
stream.pipe(res);
|
|
||||||
};
|
|
||||||
|
|
||||||
app.use("/customize", Express.static(__dirname + '/customize'));
|
app.use("/customize", Express.static(__dirname + '/customize'));
|
||||||
app.use("/customize", Express.static(__dirname + '/customize.dist'));
|
app.use("/customize", Express.static(__dirname + '/customize.dist'));
|
||||||
app.use(/^\/[^\/]*$/, function(req, res, next) {
|
app.use(/^\/[^\/]*$/, Express.static('customize'));
|
||||||
var file = req.originalUrl.slice(1) || 'index.html';
|
app.use(/^\/[^\/]*$/, Express.static('customize.dist'));
|
||||||
handleFile(__dirname + '/customize' + file, // try piping this file first
|
|
||||||
res, __dirname + '/customize.dist/' + file, // if it doesn't exist
|
|
||||||
next); // finally, fall through
|
|
||||||
});
|
|
||||||
|
|
||||||
var httpsOpts;
|
var httpsOpts;
|
||||||
if (config.privKeyAndCertFiles) {
|
if (config.privKeyAndCertFiles) {
|
||||||
@ -101,4 +79,4 @@ Storage.create(config, function (store) {
|
|||||||
console.log('DB connected');
|
console.log('DB connected');
|
||||||
NetfluxSrv.run(store, wsSrv, config);
|
NetfluxSrv.run(store, wsSrv, config);
|
||||||
WebRTCSrv.run(wsSrv);
|
WebRTCSrv.run(wsSrv);
|
||||||
});
|
});
|
||||||
Loading…
x
Reference in New Issue
Block a user