fix: Fix 502 error on editing course metadata

The uwsgi buffer size was too small to account for large headers in requests with datatables query parameters. This issue is resolved by increasing the buffer size.  See docs: https://uwsgi-docs.readthedocs.io/en/latest/ThingsToKnow.html

Close #24
This commit is contained in:
Sofiane Bebert 2022-04-18 18:21:39 +01:00 committed by Régis Behmo
parent 4bcc0b530f
commit dc47b220a7

View File

@ -58,4 +58,5 @@ CMD uwsgi \
--single-interpreter \
--enable-threads \
--processes=2 \
--buffer-size=8192 \
--wsgi-file course_discovery/wsgi.py