MaxPostSize
maxPostSize의 apache 문서를 참조하면 아래와 같다.
The maximum size in bytes of the POST which will be handled by the container FORM URL parameter parsing. The limit can be disabled by setting this attribute to a value less than zero. If not specified, this attribute is set to 2097152 (2 megabytes).
기본 설정으로 Post로 전송 할 수 있는 기본 용량은 2MB.
maxPostSize 값을 0이나, 그보다 작은 수로 설정 하면 제한 해제.
<Connector port="8080" protocol="HTTP/1.1" redirectPort="8443" maxPostSize="-1"/>
MaxParameterCount
The maximum number of parameter and value pairs (GET plus POST) which will be automatically parsed by the container. Parameter and value pairs beyond this limit will be ignored. A value of less than 0 means no limit. If not specified, a default of 10000 is used. Note that FailedRequestFilter filter can be used to reject requests that hit the limit.
Get, Post전송의 경우는 파라미터의 갯수도 제한 있다.
제한을 두지 않을경우 기본적으로 10,000개까지가 사용이 가능하다.
다만, 해당 설정을 변경 할 일은 거의 없을 듯 하다.
<Connector port="8080" protocol="HTTP/1.1" redirectPort="8443" maxPostSize="-1" maxParameterCount="-1"/>
'Etc > Etc' 카테고리의 다른 글
Web Server 와 WAS의 차이 (0) | 2020.04.09 |
---|---|
Log4j.properties를 이용한 로그 파일생성 (0) | 2020.03.31 |
#Git #GitFlow (0) | 2019.12.24 |