14.1. NGINX

14.1.4. 常用配置

14.1.4.1. 不允许访问某个地址

location /your/path {
   deny all;
}

14.1.4.2. pdf文件链接使用文件下载的方式

location / {
   alias /home/chenjie/www/;
   autoindex on;

   if ($request_uri ~* \.pdf$) {
         add_header Content-Disposition "attachment";
         add_header Content-Type application/octet-stream;
   }
}