Back to all status codes
206

Partial Content

The server is delivering only part of the resource due to a range header sent by the client.

Common Causes

  • Video streaming
  • Large file download resume
  • Range requests
  • Byte serving

Code Examples

# Enable range requests for video
location /videos {
    mp4;
    mp4_buffer_size 1m;
    mp4_max_buffer_size 5m;
}

Related Tools