This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
outline/server/middlewares/subdomainRedirect.js
Tom Moor 044486b9a6 Cleanup
2017-05-27 11:22:42 -07:00

10 lines
284 B
JavaScript

export default function subdomainRedirect(options) {
return async function subdomainRedirectMiddleware(ctx, next) {
if (ctx.headers.host === 'beautifulatlas.com') {
ctx.redirect(`https://www.${ctx.headers.host}${ctx.path}`);
} else {
return next();
}
};
}