iphone 簽名.mobileconfig檔案 – HTTPS SSL 教程

hdgara1發表於2020-01-21

iphone 簽名.mobileconfig檔案 – HTTPS SSL 教程

company.mobileconfig 未簽名的mobileconfig檔案

server.crt 你的伺服器

server.key 您的私鑰

ca-bundle.crt 你的根證照鏈

signed.mobileconfig 簽名過的mobileconfig名字

簽名命令:

openssl smime -sign -in company.mobileconfig -out signed.mobileconfig -signer server.crt -inkey server.key -certfile ca-bundle.crt -outform der -nodetach

伺服器設定:

apache 要新增MIME

AddType application/x-apple-aspen-config .mobileconfig

nginx 修改mime.types

application/x-apple-aspen-config .mobileconfig

伺服器端開發 – PHP語言:

header('Content-type: application/x-apple-aspen-config; chatset=utf-8');
header('Content-Disposition: attachment; filename="company.mobileconfig"');
echo $mobileconfig;

全球可信CA機構

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31483669/viewspace-2674174/,如需轉載,請註明出處,否則將追究法律責任。

相關文章