diff --git a/src/routes/index.js b/src/routes/index.js index 5b8bb8d638..c8a8e4d59e 100644 --- a/src/routes/index.js +++ b/src/routes/index.js @@ -149,6 +149,16 @@ module.exports = function(app, middleware) { require('./debug')(app, middleware, controllers); } + app.use(function(req, res, next) { + if (req.user || parseInt(meta.config.privateUploads, 10) !== 1) { + return next(); + } + if (req.path.indexOf('/uploads/files') === 0) { + return res.status(403).json('not-allowed'); + } + next(); + }); + app.use(relativePath, express.static(path.join(__dirname, '../../', 'public'), { maxAge: app.enabled('cache') ? 5184000000 : 0 })); diff --git a/src/views/admin/settings/post.tpl b/src/views/admin/settings/post.tpl index b618e6f5ba..a451e701e2 100644 --- a/src/views/admin/settings/post.tpl +++ b/src/views/admin/settings/post.tpl @@ -45,6 +45,11 @@ Allow users to upload regular files +