nginx
いつもyuukiさんの文章に支えられてしまっているのでちゃんと調べる nginxのコード曰く /* * HTTP does not define the code for the case when a client closed * the connection while we are processing its request so we introduce * own code to log s…
そんなデフォルト値あるんかいなという 環境 $ nginx -v nginx version: nginx/1.15.12 記述例 serverのところに追加したいサイズを記述する、以下は100MBまで許可したい場合。 server { client_max_body_size 100m; } デフォルト値などの情報 ドキュメント…