stack: bulb 0.10 + uwsgi 1.4.5 + nginx 1.2.3
I can upload small files (<100k) through my application, but larger ones do not work. The uwsgi magazine shows:
Invalid (too large) CONTENT_LENGTH. skip.
The nginx log shows nothing useful.
I tried the following, without success:
- [nginx conf] client_max_body_size 0 or 20M
- [uwsgi conf] limit-post: 0 or 20,000,000
- [bulb conf] MAX_CONTENT_LENGTH = 20,000,000
So my questions are:
- Is there a config somewhere else I can change?
- Is there any way to check used parameters at runtime on uwsgi / nginx?
source share