feature/43-postal_from_env #46

Merged
niggl merged 4 commits from feature/43-postal_from_env into dev 2020-12-22 14:55:39 +00:00
Showing only changes of commit 84a7f30a60 - Show all commits

View File

@ -6,6 +6,8 @@ import { Application } from "express";
*/ */
export default async (app: Application) => { export default async (app: Application) => {
app.enable('trust proxy'); app.enable('trust proxy');
app.disable('x-powered-by');
app.disable('x-served-by');
app.use(cookieParser()); app.use(cookieParser());
return app; return app;
}; };