Skip to content

Commit

Permalink
The KE object abspath has a MAX_PATH_LENGTH of 1024. Therefore, it ha…
Browse files Browse the repository at this point in the history
…s been updated to support browsing URI up to 1024 characters long
  • Loading branch information
fixpoint-hasan committed Dec 4, 2024
1 parent e95bee3 commit 9ff56c6
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions configs/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,15 @@ server {
# アップロードファイルサイズのチェックを行わない
client_max_body_size 0;

### for KE: MAX_PATH_LENGTH=MAX_CHAR_LENGTH = 1024 ###
# for reading large client request header. A request line cannot exceed the size of one buffer
large_client_header_buffers 2 24k;
# for reading the first part of the response received from the uwsgi server
uwsgi_buffer_size 24k;
# for response body
uwsgi_buffers 3 24k;
uwsgi_busy_buffers_size 24k;

ssl_certificate /etc/nginx/ssl/server.crt;
ssl_certificate_key /etc/nginx/ssl/server.key;
# ssl_password_file /etc/nginx/ssl/server.password;
Expand Down

0 comments on commit 9ff56c6

Please sign in to comment.