I am doing some JSONP calls which limit me to HTTP GET as the method of talking to the server. I seem to be hitting an 8k limit on the size of the request. I have tried changing my dotcloud.yml
to
www:
type: perl
approot: webapp
config:
uwsgi_buffer_size: 65536
And created an nginx.conf
file in the root of my project (the same level as the dotcloud.yml
) that says
large_client_header_buffers 4 64k
But I am still hitting the 8k barrier.