본문 바로가기
Django 장고

413 Request Entity Too Large 에러

by jennyiscoding 2024. 11. 12.

고치는 방법: 

# settings.py
DATA_UPLOAD_MAX_MEMORY_SIZE = 10485760  # 10MB (원하는 크기로 설정)

 

nginx.conf

http {
  client_max_body_size 1073741824;