Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Question] How to set the accepted maximum header size? #4131

Closed
rafaelvascc opened this issue Dec 13, 2019 · 1 comment
Closed

[Question] How to set the accepted maximum header size? #4131

rafaelvascc opened this issue Dec 13, 2019 · 1 comment
Labels

Comments

@rafaelvascc
Copy link

Hi, on our application we get JWT access tokens from an external authentication server.
Some of our users have a lot of claims and roles, making the token really large. When we set it into the Authorization header and send the request to express we get a response saying the request header is too large.
Is there a way to increase the maximum request header size on express or even make it unlimited?
Thanks.

@dougwilson
Copy link
Contributor

Hi @rafaelvascc ! The header size (and the 400) are both handled by Node.js HTTP directly, before getting to Express. There are two main methods to change this in Node.js:

  1. Through the --max-http-header-size command line option (https://nodejs.org/api/cli.html#cli_max_http_header_size_size)
  2. Create a HTTP server (https://nodejs.org/api/http.html#http_http_createserver_options_requestlistener) with maxHeaderSize set to the value you want and add your express app there. This would replace your existing app.listen call. More information on what this looks like here: http://expressjs.com/en/api.html#app.listen_path_callback

I hope this helps!

@expressjs expressjs deleted a comment from cekvenich Mar 7, 2020
@expressjs expressjs locked as resolved and limited conversation to collaborators Mar 7, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

No branches or pull requests

2 participants