Skip to content

Commit

Permalink
chore(reverse-proxy) : changes in docker file and the header size
Browse files Browse the repository at this point in the history
  • Loading branch information
soumyadip007 committed Dec 11, 2024
1 parent d5bf5ca commit e386f6a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/reverse-proxy-service/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ COPY --from=builder $HOME/.env.example .

EXPOSE 8080

CMD ["node", "dist/index.js"]
CMD ["node", "--max-http-header-size=10485760", "dist/index.js"]
2 changes: 1 addition & 1 deletion packages/reverse-proxy-service/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"main": "src/index.ts",
"scripts": {
"start": "npm run serve",
"serve": "node --max-http-header-size=33554432 dist/index.js",
"serve": "node --max-http-header-size=10485760 dist/index.js",
"dev": "nodemon",
"prebuild": "rimraf dist",
"build": "tsc",
Expand Down

0 comments on commit e386f6a

Please sign in to comment.