Skip to content

Instantly share code, notes, and snippets.

@oakhole
Last active February 9, 2022 13:33
Show Gist options
  • Save oakhole/63b4ecd7d2e5f5d32a61225f7e1fc837 to your computer and use it in GitHub Desktop.
Save oakhole/63b4ecd7d2e5f5d32a61225f7e1fc837 to your computer and use it in GitHub Desktop.
Download mp3 from nginx server
location ~ ^.*/(?P<request_basename>[^/]+\.(mp3))$ {
add_header Content-Disposition 'attachment; filename="$request_basename"';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment