From 3a97d07d0934cd2a38ce7963ed112ebad13f091c Mon Sep 17 00:00:00 2001 From: marc90 Date: Wed, 21 Aug 2019 09:53:24 +0300 Subject: [PATCH] Deepcode - Fix the bugs #521 https://github.com/erxes/erxes-api/issues/521 --- src/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.ts b/src/index.ts index 0dd9c58..c6c2b0e 100755 --- a/src/index.ts +++ b/src/index.ts @@ -17,6 +17,7 @@ const connectionPromise = connect(); const app = express(); +app.disable('x-powered-by'); app.use('/static', express.static(path.join(__dirname, 'static'))); app.use(bodyParser.urlencoded({ extended: true }));