-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BE] fix: 이미지 용량 제한을 5MB로 설정 #643
Conversation
Test Results196 tests 196 ✅ 17s ⏱️ Results for commit 706efc2. ♻️ This comment has been updated with latest results. |
@@ -29,7 +29,7 @@ | |||
public class S3StorageManager implements FileStorageManager { | |||
|
|||
private static final String IMAGE_MIME_TYPE_PREFIX = "image/"; | |||
private static final int FILE_SIZE_LIMIT = 1; | |||
private static final int FILE_SIZE_LIMIT = 5; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
오
servlet: | ||
multipart: | ||
max-file-size: 6MB | ||
max-request-size: 6MB |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
여긴 왜 6mb로 제한이 되나요?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
multipart단에서 터지면 예외메시지가 불친절하게 나옵니다
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
헉 근데 15MB 이래버리면 어차피 nginx에서 터지네요.. 필요 없을것같기도 하고
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
가장 바깥 단에서 막을 수도 있는걸 의도적으로 비즈니스 코드까지 들어오도록 허용하는게 최선인지는 잘 모르겠습니다 🥸
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ㅇㅈ합니다 필요 없을듯
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
굿굿 수정사항 확인 완료
이슈
개발 사항
전달 사항 (없으면 삭제해 주세요)