메추리알(메뉴 추천 리스트 알고리즘)(최종 프로젝트)(16)
- 어제에 이어 오늘도 프론트 배포에 힘을 쏟고 있었다. 여러가지 문제들이 발생했었다.
- 용량이 2.6MB를 올리려던 팀원분이 있으셨어서 그 이하의 용량인 파일로 보내면 잘 되는 것 까지는 확인했었다. 그러나 다른 유저들이 그것보다 큰 용량을 올릴 수도 있기때문에 해당 설정을 바꾸려하였다. 어제의 조언을 이어 설정을 하였는데도 계속 오류가 발생했다. 구글링과 조언 등 한참을 헤매다가 결국 성공했다. 우리팀의 서버는 django + nginx 이기때문에 장고뿐만아니라 nginx에도 설정을 따로 해줬어야 했던 것이다.
https://stackoverflow.com/questions/60429218/django-file-upload-max-memory-vs-data-upload-max-memory
Django: FILE_UPLOAD_MAX_MEMORY vs DATA_UPLOAD_MAX_MEMORY
I am working with Django 2.2 and got stuck with file upload size validation. I have read django documentation: DATA_UPLOAD_MAX_MEMORY_SIZE FILE_UPLOAD_MAX_MEMORY_SIZE I only set
stackoverflow.com
https://stackoverflow.com/questions/58901451/is-there-a-default-file-upload-size-limit-in-django
Is there a default file upload size limit in django?
I am using django FileField and ImageField in my models but I am wondering is there any default upload size limit for files.I researched about it and I found that we can limit the file upload size to
stackoverflow.com
https://stackoverflow.com/questions/73089545/how-can-i-allow-large-file-uploads-on-django
How can I allow large file uploads on Django
I have a website www.theraplounge.co that allows users to upload videos. The problem is our limit on file sizes are to small. How can I increase the file size users are able to upload through my fo...
stackoverflow.com
https://hippocode.tistory.com/9
[nginx] client_max_body_size 파일 업로드 크기 제한 변경
nginx를 이용해 웹 서버를 구동한 상태로 브라우저에서 파일을 업로드하려고 하면 Failed to load resource: the server responded with a status of 413 (Request Entity Too Large) 위와 같은 메시지를 받을 수 있다. nginx의
hippocode.tistory.com
https://velog.io/@hyeseong-dev/djangorequest.body-size-limit-error
[django]request.body size limit error
base64로 인코딩한 데이터를 requests객체의 post메서드에 담아 보내니 아래와 같은 오류가 나타났습니다. 바로 구느님에게 달려가 검색해보니 아래와 같이 설정하면 된다는 사실을 확인했습니다.
velog.io