Info
- Nginx의 기본 File Upload 크기는 1mb이며 이를 초과하면 Err가 발생
- 개발서버에서는 오류가 안나고 실서버 운영에서만 발생
Solution
- platform/nginx/conf.d에 custom 옵션을 넣어줌
1
2
3
4
5
6
~/workspace/my-app/
|-- .platform
| `-- nginx
| `-- conf.d
| `-- myconf.conf
`-- other source files
1
2
# myconf.conf
client_max_body_size 50M;