Skip to content

Instantly share code, notes, and snippets.

@vigith
Created August 15, 2013 17:58
Show Gist options
  • Save vigith/6243040 to your computer and use it in GitHub Desktop.
Save vigith/6243040 to your computer and use it in GitHub Desktop.
nginx conf for range
server {
location /range {
fastcgi_pass localhost:5000;
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
fastcgi_param QUERY_STRING $query_string;
fastcgi_param REQUEST_METHOD $request_method;
fastcgi_param CONTENT_TYPE $content_type;
fastcgi_param CONTENT_LENGTH $content_length;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment