简体   繁体   中英

How to increase the header size of http in NextJs

I need to increase the HTTP header size which is currently 16384 inside my NextJs app but I can't use the following command node --max-HTTP-header-size=24576 server.js can someone more advanced give me a shoulder.

You can pass node options via the NODE_OPTIONS environment variable.

NODE_OPTIONS='--max-http-header-size=24576' node server.js

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM