http {
#include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
<strong> include /etc/nginx/vhost/*.conf;</strong>
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
}
}
上面是nginx的配置部分内容,将注释行(include mime.types)打开即可解决问题。