|
| 1 | +--- |
| 2 | +title: "AccessConnector" |
| 3 | +description: "Configure an Access Connector for proxying web traffic." |
| 4 | +category: "Network Security" |
| 5 | +--- |
| 6 | + |
| 7 | +Configure an Access Connector for proxying web traffic. |
| 8 | +When this policy is set, Firefox traffic matching the specified URL patterns is routed through the configured proxy. |
| 9 | + |
| 10 | +> [!NOTE] |
| 11 | +> Currently, this is only implemented in Firefox Enterprise. |
| 12 | +
|
| 13 | +**Compatibility:** Firefox Enterprise 149.0.0\ |
| 14 | +**CCK2 Equivalent:** N/A\ |
| 15 | +**Preferences Affected:** N/A |
| 16 | + |
| 17 | +## Values |
| 18 | + |
| 19 | +- `Host`: A string that defines the hostname or IP address of the proxy server to use. |
| 20 | +- `Port`: A number defining the port number of the proxy server (e.g., `443`). |
| 21 | +- `MatchPatterns`: A list of URL match patterns for which traffic should be routed through the Access Connector. |
| 22 | + See [Match patterns](https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/Match_patterns) for syntax. |
| 23 | +- `Locked`: Prevents the user from changing Access Connector settings. |
| 24 | + |
| 25 | +## Windows (GPO) |
| 26 | + |
| 27 | +``` |
| 28 | +Software\Policies\Mozilla\Firefox\AccessConnector\Host = "proxy.example.com" |
| 29 | +Software\Policies\Mozilla\Firefox\AccessConnector\Port = 443 |
| 30 | +Software\Policies\Mozilla\Firefox\AccessConnector\MatchPatterns\1 = "https://*.example.com" |
| 31 | +Software\Policies\Mozilla\Firefox\AccessConnector\Locked = 0x1 | 0x0 |
| 32 | +``` |
| 33 | + |
| 34 | +## macOS |
| 35 | + |
| 36 | +```xml |
| 37 | +<dict> |
| 38 | + <key>AccessConnector</key> |
| 39 | + <dict> |
| 40 | + <key>Host</key> |
| 41 | + <string>proxy.example.com</string> |
| 42 | + <key>Port</key> |
| 43 | + <integer>443</integer> |
| 44 | + <key>MatchPatterns</key> |
| 45 | + <array> |
| 46 | + <string>https://*.example.com</string> |
| 47 | + </array> |
| 48 | + <key>Locked</key> |
| 49 | + <true/> | <false/> |
| 50 | + </dict> |
| 51 | +</dict> |
| 52 | +``` |
| 53 | + |
| 54 | +## policies.json |
| 55 | + |
| 56 | +```json |
| 57 | +{ |
| 58 | + "policies": { |
| 59 | + "AccessConnector": { |
| 60 | + "Host": "proxy.example.com", |
| 61 | + "Port": 443, |
| 62 | + "MatchPatterns": ["https://*.example.com"], |
| 63 | + "Locked": true | false |
| 64 | + } |
| 65 | + } |
| 66 | +} |
| 67 | +``` |
0 commit comments