Story #6460
Updated by bmbouter over 4 years ago
## Problem
Users of pulp-certguard need a way to accept larger header at the pulpcore-content app. In practice the aiohttp default of 8190 bytes is too small for the headers Katello wants to use for example.
## Solution
Add an optional setting named `MAX_HEADER_SIZE` which defaults to None. It accepts integer values in bytes that should be allowed. So for example, to specify a maximum header size of 16380 you would use dynaconf to set the value:
`MAX_HEADER_SIZE = 16380`.