<!--
{
  "availability" : [
    "iOS: 6.0.0 -",
    "iPadOS: 6.0.0 -",
    "macCatalyst: 6.0.0 -",
    "macOS: 10.9.0 -",
    "tvOS: 9.0.0 -",
    "visionOS: 2.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "DeviceManagement",
  "identifier" : "/documentation/DeviceManagement/GlobalHTTPProxy",
  "metadataVersion" : "0.1.0",
  "role" : "Device Management Profile",
  "symbol" : {
    "kind" : "Device Management Profile",
    "modules" : [
      "Device Management"
    ],
    "preciseIdentifier" : "mdm-profiles:GlobalHTTPProxy"
  },
  "title" : "GlobalHTTPProxy"
}
-->

# GlobalHTTPProxy

The payload that configures a global HTTP proxy.

```
object GlobalHTTPProxy
```

## Discussion

Specify `com.apple.proxy.http.global` as the payload type.

There can only be one payload of this type on the device at any time.

### Profile availability

|||
|--------------------------|---------------------------------------|
|Device channel            |iOS, macOS, Shared iPad, tvOS, visionOS|
|User channel              |N/A                                    |
|Allow manual install      |iOS, macOS, tvOS, visionOS             |
|Requires supervision      |iOS, tvOS, visionOS                    |
|Requires user-approved MDM|N/A                                    |
|Allowed in user enrollment|N/A                                    |
|Allow multiple payloads   |N/A                                    |

### Profile example

```plist
<?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>PayloadContent</key>
    <array>
        <dict>
            <key>ProxyCaptiveLoginAllowed</key>
            <false/>
            <key>ProxyPassword</key>
            <string>password</string>
            <key>ProxyServer</key>
            <string>10.0.1.42</string>
            <key>ProxyServerPort</key>
            <integer>8080</integer>
            <key>ProxyType</key>
            <string>Manual</string>
            <key>ProxyUsername</key>
            <string>username</string>
            <key>PayloadIdentifier</key>
            <string>com.example.myglobalhttpproxypayload</string>
            <key>PayloadType</key>
            <string>com.apple.proxy.http.global</string>
            <key>PayloadUUID</key>
            <string>dee0892a-7d4c-41be-ac88-d87247dd076c</string>
            <key>PayloadVersion</key>
            <integer>1</integer>
        </dict>
    </array>
    <key>PayloadDisplayName</key>
    <string>GlobalHTTPProxy</string>
    <key>PayloadIdentifier</key>
    <string>com.example.myprofile</string>
    <key>PayloadType</key>
    <string>Configuration</string>
    <key>PayloadUUID</key>
    <string>ee2f890c-6c9f-49be-9e19-b81c66d5cc0d</string>
    <key>PayloadVersion</key>
    <integer>1</integer>
</dict>
</plist>
```

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)
