413 Request Entity Too Large

1. post_max_size 와 upload_max_filesize 에 문제가 없는 환경 (즉, 충분한 값이 설정되어있음)
post_max_size => 40M => 40M
upload_max_filesize => 40M => 40M

2. 아파치 에러로그에 
[Thu Jun 02 15:27:10.373076 2022] [ssl:error] [pid 5112] [client 10.9.16.9:52932] AH02018: request body exceeds maximum size (131072) for SSL buffer, referer: https://-----------------
[Thu Jun 02 15:27:10.373116 2022] [ssl:error] [pid 5112] [client 10.9.16.9:52932] AH02257: could not buffer message body to allow SSL renegotiation to proceed, referer: https://------------------

이런 에러가 남음

3. https 사용하는 접속

*. 원인은
SSL의 버퍼쪽이 작아서 첨부파일 처리에 사이즈가 부족함.

*. 해결

       <Directory "/home/~~~~~/www">
            Options +FollowSymLinks -Indexes +ExecCGI
            AllowOverride All
            Order allow,deny
            Allow from all
            # --------------------------------------------- 이 부분 추가. (충분히 큰 사이즈로)
            SSLRenegBufferSize 10486000     
            # ---------------------------------------------
        </Directory>

댓글
  • No Nickname
    No Comment
  • 권한이 없습니다.
    {{m_row.m_nick}}
    -
목록형 📅 달력형