Skip to content

Instantly share code, notes, and snippets.

@cooljl31
Forked from JPry/nginx.conf
Created April 16, 2019 13:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cooljl31/965aedc4924dbc7b635192b66d41e65d to your computer and use it in GitHub Desktop.
Save cooljl31/965aedc4924dbc7b635192b66d41e65d 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;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment