Nginx offers to download SVG instead of showing it

2019-06-20 04:48发布

I try to show SVG file in HTML or separate tab but Nginx offers me to download it. I took normal SVG file which works on another site but not in my server.

Where is a problem?

Here is an example http://proximax.ru/media/content/final/plane2.svg Also here SVG in HTML http://proximax.ru/index/

标签: svg nginx mime
3条回答
Explosion°爆炸
2楼-- · 2019-06-20 05:17

The of your image is noted as application/octet-stream which a browser can only offer to download as it does not know how to interpret it.

From your index.html file it is clear that you were playing around with variations of the MIME-type, and it is unclear whether the standard requires image/svg or image/svg+xml (or standards being what they are, something else entirely).

查看更多
乱世女痞
3楼-- · 2019-06-20 05:22

I fixed it. I added to /etc/nginx/mime.types

image/svg+xml svg svgz;

Then I checked that server responses correctly

wget -O - -S http://proximax.ru/media/content/final/avW30U.svg > /dev/null
..
Content-Type: image/svg+xml
..

Also I turned off other virtual spaces for be clear.

查看更多
手持菜刀,她持情操
4楼-- · 2019-06-20 05:37

In my case, I put default_type application/octet-stream; after the include mime.types; cause the problem. And simply switch them fixed it. ^_^

查看更多
登录 后发表回答