Ошибки NginxОшибка
400 Bad Request400 Bad Request — Nginx Bad Request
Nginx rejected the client request due to a malformed HTTP request.
nginxserver
Подробнее 413 Request Entity Too LargeThe request body exceeds the maximum size allowed by Nginx.
The client sent a request body larger than the client_max_body_size setting (default 1 MB).
Increase client_max_body_size in the nginx.conf or server block. Add client_max_body_size 100m; for 100 MB uploads.
# In nginx.conf
http {
client_max_body_size 100M;
}400 Bad RequestNginx rejected the client request due to a malformed HTTP request.
304 Not ModifiedThe resource has not been modified since the client's last request.
no servers are inside upstreamThe upstream block has no servers defined.
503 Service UnavailableThe server is temporarily unable to handle the request.
invalid PID numberThe Nginx PID file contains an invalid process ID.
recv() failed (104: Connection reset by peer)The client reset the connection during data transfer.