Actualmente tengo 2 lugares de imagen y que puede formatos (jpg, jpeg, png, gif)Cómo forzar descarga de archivos en el navegador, el servidor nginx
i.domain.com/simage.jpg thumbnail
i.domain.com/image.jpg high quality
i.domain.com/o/image.jpg full resolution
¿Alguien sabe cómo puedo obtener archivos de imagen in/o/para descargar en lugar de renderizar en el navegador web?
Aquí está mi archivo de configuración: http://pastebin.com/dP8kZMzx
#setup subdomain i.domain.com
server {
server_name i.domain.com;
access_log /var/log/nginx/i..com.access.log;
error_log /var/log/nginx/i.domain.com.error.log;
root /var/www/domain.com/test1/images;
index index.php index.html index.htm;
#error_page 403 = /notfound.jpg;
#error_page 500 = /notfound.jpg;
location/{
#change this to a 404 img file .jpg
try_files $uri $uri/ /notfound.jpg;
rewrite "/s([A-Za-z0-9.]+)?" /small/$1 break;
rewrite "/o/([A-Za-z0-9.]+)?" /orig/$1 break;
rewrite "/([A-Za-z0-9.]+)?" /medium/$1 break;
}
}
Eso dio lugar a un error 404:/ – eeek
Este enlace funciona para mí: http: //210mike.com/force-file-download-nginx-apache/ ubicación ~ * (. * \. pdf) { tipos {application/octet-stream .pdf; } default_type application/octet-stream; } – learnJQueryUI