Skip to content

Instantly share code, notes, and snippets.

@JPry
Created December 3, 2012 23:42
Show Gist options
  • Save JPry/4199112 to your computer and use it in GitHub Desktop.
Save JPry/4199112 to your computer and use it in GitHub Desktop.
Nginx - change mime type for certain file type (pdf)
location ~* /(.*\.pdf) {
types { application/octet-stream .pdf; }
default_type application/octet-stream;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment