Skip to content

Commit

Permalink
Update server.xml.tmpl
Browse files Browse the repository at this point in the history
Since we are facing issues for some HTTP Requests with the error Message: "Request header is too large" we suggest to increase the Request Headers. For our on prem Deployment we always used to have the maxHeaderSize on 65536 and didnt face any issues.
  • Loading branch information
YannWWI authored Sep 25, 2024
1 parent e53c8c2 commit 0682a36
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions charts/pega/config/deploy/server.xml.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
<Connector port="8080" protocol="org.apache.coyote.http11.Http11Nio2Protocol"
relaxedQueryChars="[ ]"
relaxedPathChars="[ ]"
maxHttpHeaderSize="16384"
maxHttpHeaderSize="65536"
maxSavePostSize="65536"
connectionTimeout="20000"
maxHeaderCount="100"
Expand All @@ -88,7 +88,7 @@
scheme="https" secure="true" SSLEnabled="true"
relaxedQueryChars="[ ]"
relaxedPathChars="[ ]"
maxHttpHeaderSize="16384"
maxHttpHeaderSize="65536"
maxSavePostSize="65536"
connectionTimeout="20000"
maxHeaderCount="100"
Expand Down Expand Up @@ -223,4 +223,4 @@
</Host>
</Engine>
</Service>
</Server>
</Server>

0 comments on commit 0682a36

Please sign in to comment.