Increase uwsgi buffer size
The DataTables sets a lot of data into some cookies. It's currently overwhelming the uwsgi buffer size.
This commit is contained in:
parent
df389b9ce5
commit
8f28a444a2
1 changed files with 1 additions and 1 deletions
|
@ -46,4 +46,4 @@ VOLUME /app/symposion_app
|
|||
CMD ["./manage.py", "runserver", "-v3", "0.0.0.0:8000"]
|
||||
|
||||
FROM symposion_base as symposion_prod
|
||||
CMD ["/usr/local/bin/uwsgi", "--http-socket", "0.0.0.0:8000", "--wsgi-file", "pinaxcon/wsgi.py"]
|
||||
CMD ["/usr/local/bin/uwsgi", "--http-socket", "0.0.0.0:8000", "-b", "8192", "--wsgi-file", "pinaxcon/wsgi.py"]
|
||||
|
|
Loading…
Reference in a new issue