配置下载的文件才能正常安装,否则是bin文件
路径文件路径在
/www/server/apache/conf
/www/server/nginx/conf
mime.types文件添加
application/vnd.android.package-archive apk;
application/iphone pxl ipa;
另一种方式,在nignx中动态配置
location /client {
default_type application/octet-stream;
if ($request_filename ~* ^.*?/.(zip|apk|ipa)$)
{
add_header Content-Disposition: 'attachmet;';
}
}