Push configuration to iOS devices via MDM (managed app)

Hey folks,

we’re hosting Bitwarden ourself on premise and deploying mobile apps via a MDM solution. In order to route the users directly to our server we’d like to push a predefined configuration with the server URL. Actually this works fine on Android devices, as there are given attributes with the app which can be read by our MDM.

Apple on the other hand requires us to obtain an XML config, like this:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
</dict>
</plist>

Is there any documentation for these managed apps with a list of attributes?

Hey @rawsmr don’t hesitate to reach out to support at: Help Center | Bitwarden

1 Like

Thank you! Found the needed information here: Configure Clients for Your Server | Bitwarden

So an example XML would look like:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>baseEnvironmentUrl</key>
    <string>https://vault.example.com</string>
</dict>
</plist>

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.