JUNNETWORKS / 42-webserv

Webserv is one of the projects in 42 cursus.
5 stars 0 forks source link

CGI出力のステータス部とヘッダー部のサイズが16KBを超える場合はエラー #224

Closed JUNNETWORKS closed 2 years ago

JUNNETWORKS commented 2 years ago

ヘッダー部とボディ部の区切りが16KBを超えても出現しない場合はエラーとする。 16KBはNginxがHTTPリクエストのステータス部とヘッダー部のデフォルト最大サイズである。

試し方

#!/bin/bash
set -f

# echo "Content-type: text/plain; charset=iso-8859-1"
# echo

for i in {0..99999};
do
    echo -n "hoge"
done

のようなCGIスクリプトを作成、実行した際に、16KBを超えたタイミングでCGIスクリプトが終了し、500 InternalServerError が返ってくることが確認できる。