Proxie Certificate

Click to download the certificate:


PEM Format

For all non-Windows platforms

PFX Format

For Windows

Additional steps for iOS 10.3+

After installing the Proxie CA into the system profiles,

  1. Open the Settings app
  2. Go to General -> About -> Certificate Trust Settings
  3. Switch on the toggle for "Proxie CA"

How to install on macOS / OSX

  1. Download PEM file (from above link)
  2. Double-click the PEM file
  3. The "Keychain Access" application opens
  4. Find the new certificate "Proxie CA" in the list
  5. Double-click the "Proxie CA" entry
  6. A dialog window openes up
  7. Change "Secure Socket Layer (SSL)" to "Always Trust"
  8. Close the dialog window (and enter your password if prompted)

About ATS in iOS 9+

If you are debugging your own app and still have problems with HTTPS Decryption even when everything is correctly set up, you could try disabling ATS by appending the following keys to your app's Info.plist:


<key>NSAppTransportSecurity</key>
<dict>
  <key>NSAllowsArbitraryLoads</key>
  <true/>
</dict>
      

Don't forget the turn ATS back on when releasing your app. For more information about ATS, visit Apple's documentation.