本文整理汇总了TypeScript中express.Application.disable方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Application.disable方法的具体用法?TypeScript Application.disable怎么用?TypeScript Application.disable使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类express.Application
的用法示例。
在下文中一共展示了Application.disable方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: express
const app: Application = express();
if (config.app.accessLog === 'true') {
app.use(morgan('combined'));
}
if (process.env.ENVIRONMENT === 'production') {
app.use((req: any, res: Response, next: NextFunction) => {
if (!req.client.authorized && req.path !== '/dashboard/public') {
return res.status(401).send({error: 'Invalid client certificate'});
}
next();
});
}
app.disable('x-powered-by');
app.use((req: Request, res: Response, next: NextFunction) => {
if (config.app.forceHttps === 'enabled') {
if (!req.secure) {
return res.redirect('https://' + req.hostname + ':' + config.app.httpsPort + req.originalUrl);
}
res.setHeader('Strict-Transport-Security', 'max-age=31536000');
}
if (req.method !== 'OPTIONS' && req.header('Accept') !== 'application/json' && req.header('Content-Type') === 'application/json') {
return res.status(406).json({
error: 'Unsupported "Accept" header'
});
}