This repository was archived by the owner on Aug 28, 2023. It is now read-only.
File tree 3 files changed +15
-5
lines changed
3 files changed +15
-5
lines changed Original file line number Diff line number Diff line change @@ -72,8 +72,12 @@ python3 ./docker/scripts/configure_index_html.py \
72
72
./docker/scripts/start_jupyter.sh &
73
73
74
74
# TODO: rm LC_ALL & LANG when 53369 is resolved
75
- LC_ALL=C.UTF-8 LANG=C.UTF-8 gunicorn --worker-class eventlet -w 1 -b 127.0.0.1:${API_PORT} workbench:APP \
76
- --log-level ${WB_LOG_LEVEL} \
77
- --log-file ${WB_LOG_FILE} \
78
- --error-logfile ${WB_LOG_FILE} \
79
- --enable-stdio-inheritance
75
+ LC_ALL=C.UTF-8 LANG=C.UTF-8 gunicorn \
76
+ --limit-request-field_size 32000 \
77
+ --worker-class eventlet \
78
+ -w 1 \
79
+ -b 127.0.0.1:${API_PORT} workbench:APP \
80
+ --log-level ${WB_LOG_LEVEL} \
81
+ --log-file ${WB_LOG_FILE} \
82
+ --error-logfile ${WB_LOG_FILE} \
83
+ --enable-stdio-inheritance
Original file line number Diff line number Diff line change 1
1
server {
2
2
server_tokens off;
3
3
4
+ # Large header support
5
+ large_client_header_buffers 4 32k;
6
+
4
7
#ipv4
5
8
listen ${PROXY_PORT} ssl;
6
9
Original file line number Diff line number Diff line change 1
1
server {
2
2
server_tokens off;
3
3
4
+ # Large header support
5
+ large_client_header_buffers 4 32k;
6
+
4
7
#ipv4
5
8
listen ${PROXY_PORT};
6
9
You can’t perform that action at this time.
0 commit comments