mirror of
https://github.com/stolksdorf/homebrewery.git
synced 2025-12-19 14:31:29 +00:00
7 lines
232 B
JavaScript
7 lines
232 B
JavaScript
module.exports = (req, res, next) => {
|
|
if(process.env.NODE_ENV === 'local') return next();
|
|
if(req.header('x-forwarded-proto') !== 'https') {
|
|
return res.redirect(302, `https://${req.get('Host')}${req.url}`);
|
|
}
|
|
return next();
|
|
}; |