라라벨에서 413에러가 났을 경우 nginx를 사용하면 다음과 같이 수정을 하면 됩니다.
이 이유가 발생하는 이유는
413 => ‘Payload Too Large‘, |
로 서버의 설정이 잘못된 경우 입니다.
nginx.conf의 위치를 찾아서 (ce /etc/nginx/nginx.conf)
http 나 server 또는 location 섹션을 찾아서 다음과 같이 사이즈 클라이언트 맥스 바디 리미트의 사이즈를 수정해 주면 됩니다.
# set client body size to 2M # client_max_body_size 3M; |
그 다음 엔진엑스를 리로드 해주면 됩니다.
RHEL/CentOS/Debian/Ubuntu Linux, try:
# service nginx reload
출처) https://www.cyberciti.biz/faq/linux-unix-bsd-nginx-413-request-entity-too-large/