自建IOS企业包ipa包 下载服务

思路:ios开发人员提供ipa包、配置plist文件,配置https服务、创建下载页面以及链接

1. xml plist文件  看本文最后

2. 这里提供两个免费的SSL证书网站,配置好服务器就可以使用了 

        https://letsencrypt.org    / https://certbot.eff.org

        https://www.jianshu.com/p/801b67cc2ff8   这篇文有配置说明cerbot生成免费SSL证书的步骤

3.在nginx 配置:

server {

        listen 80;

        #/etc/letsencrypt/live/www.xxxx.cc

        listen      443 ssl;

        ssl_certificate /etc/letsencrypt/live/www.xxxx.io/cert.pem;

        ssl_certificate_key /etc/letsencrypt/live/www.xxxx.io/privkey.pem;

        server_name www.xxxx.cc xxxx.cc;

        root /data/www/officialWeb;

        index  index.html index.php;

        # error_log  /data/www/www.xxxx.cc/storage/logs/xxxx_err.log;

        location / {

              # try_files $uri $uri/ /index.php?$query_string;

        }

        location ~ [^/]\.php(/|$) {

#          allow 111.111.11.1;

#          deny all;

                fastcgi_pass  127.0.0.1:9000;

                fastcgi_index  /index.php;

                fastcgi_param PATH_INFO $fastcgi_path_info;

                fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;

                fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;

                include        fastcgi_params;

        }

}

4. 下载demo代码: download



plist 文件内容  手敲上来的,供参考,不保证能用,需要原始的去网上下载

-----------------------------------------------------------------------

    items

   

       

            assets

           

               

                    kind

                    software-package

                    url

                    http://xxxsdf.com/xxxx/xxxx.ipa

               

               

                    kind

                    full-size-image

                    needs-shine

                   

                     url

                    https://xxxx.xxxxx/xxxxx/images/logo_im.png

               

               

                    kind

                    display-image

                    needs-shine

                   

                    url

                    https://xxx.xxx/xxxx/images/logo_im.png

               

           

            metadata

           

                bundle-identifier

                com.beebay.jsnet

                bundle-version

                1.0.1

                kind

                software

                title

                EOSCash

             

         

   

 

你可能感兴趣的:(自建IOS企业包ipa包 下载服务)