Skip to content

Instantly share code, notes, and snippets.

@JPry
Created November 29, 2012 18:50
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save JPry/4171084 to your computer and use it in GitHub Desktop.
Save JPry/4171084 to your computer and use it in GitHub Desktop.
Nginx - Force PDFs to download
location ~* /(.*\.pdf) {
types { application/octet-stream .pdf; }
default_type application/octet-stream;
}
@sdshmkh
Copy link

sdshmkh commented Jun 19, 2018

Hey, how do I configure nginx to not download the pdf file and show it as an embedded pdf in the browser. Thanks.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment