Nginx 에러정보
304 Not Modified304 Not Modified — Nginx Not Modified
The resource has not been modified since the client's last request.
nginxserver
상세 보기 an upstream response is buffered to a temporary fileThe upstream response is being buffered to disk because it exceeds memory buffers.
The response is larger than proxy_buffer_size and proxy_buffers combined. Nginx writes excess data to a temporary file.
Increase proxy_buffer_size and proxy_buffers. Set proxy_max_temp_file_size to limit disk usage. Disable buffering with proxy_buffering off if not needed.
# Increase buffer size
proxy_buffer_size 128k;
proxy_buffers 4 256k;
proxy_busy_buffers_size 256k;304 Not ModifiedThe resource has not been modified since the client's last request.
host not found in upstreamNginx could not resolve the hostname specified in the upstream block.
400 Bad RequestNginx rejected the client request due to a malformed HTTP request.
496 SSL Certificate RequiredA client certificate is required but was not provided.
too many open filesNginx has reached the maximum number of open file descriptors.
invalid PID numberThe Nginx PID file contains an invalid process ID.