Hi, I use uwsgi+django some requests don't send to django,just skip by uwsgi request's method is GET with much params, I have set buffer-size 65535 Question is like this <http://serverfault.com/questions/733602/show-config-of-running-uwsgi-instance> so how to fix it;
and this is my demo ini(everything work ok,except some get request, due to params too much) [uwsgi] ini = :runserver [default] # Django-related settings # the base directory (full path) chdir = /xx/xx/xx/ # Django's wsgi file module = wsgi:application # the virtualenv (full path) home = /xx/xx/ master = true vacuum = true no-orphans = true threads = 1 env = DJANGO_SETTINGS_MODULE = settings [runserver] ini = :default processes = 4 socket = /home/xxxx/xxxxx/django.sock # ... with appropriate permissions - may be needed chmod-socket = 666 buffer-size = 65535 limit-post = 0 module = wsgi waiting for you receive.thx
_______________________________________________ uWSGI mailing list [email protected] http://lists.unbit.it/cgi-bin/mailman/listinfo/uwsgi
