Merge pull request #2851 from thelounge/xpaw/express

Force express server to run in production mode
This commit is contained in:
Pavel Djundik 2018-10-15 10:58:13 +03:00 committed by GitHub
commit 90f8b9a817
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -52,7 +52,7 @@ class Uploader {
} while (fs.stat(destPath, (err) => (err ? true : false)));
fsextra.move(data.file.pathName, destPath).then(() => {
const slug = path.basename(data.file.pathName);
const slug = encodeURIComponent(path.basename(data.file.pathName));
const url = `uploads/${randomName}/${slug}`;
socket.emit("upload:success", url);
}).catch(() => {

View file

@ -46,6 +46,7 @@ module.exports = function() {
};
const app = express()
.set("env", "production")
.disable("x-powered-by")
.use(allRequests)
.use(index)