Skip to content

Commit

Permalink
Merge pull request #78 from nhsconnect/PRMP-544
Browse files Browse the repository at this point in the history
[PRMP-544] Upped maximum message size to 30MB
  • Loading branch information
AndyFlintNHS authored Jun 21, 2024
2 parents cedf2f7 + 0bc439f commit 05479b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import helmet from 'helmet';
const app = express();

app.disable('x-powered-by');
app.use(express.json({ limit: '6mb' }));
app.use(express.json({ limit: '30mb' }));
app.use(requestLogger(options));
// Sets "Strict-Transport-Security: max-age=31536000; includeSubDomains"
app.use(
Expand Down

0 comments on commit 05479b1

Please sign in to comment.