Skip to content

Commit 9681aae

Browse files
authored
feat(docs): Add AccessConnector policy (#105)
* feat(docs): Add AccessConnector policy * Apply suggestion from @bsmth
1 parent 9212be3 commit 9681aae

2 files changed

Lines changed: 69 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,10 @@
2020

2121
#### Added
2222

23+
- `AccessConnector` policy: Configure an Access Connector for proxying web traffic. [#102](https://github.com/mozilla/enterprise-admin-reference/pull/102)
2324
- `AIControls` policy: Configure AI controls. [#103](https://github.com/mozilla/enterprise-admin-reference/pull/103)
2425
- `CrashReportsSubmit` policy: Configure crash report submission settings. [#86](https://github.com/mozilla/enterprise-admin-reference/pull/86)
25-
- `Sync` policy [#70](https://github.com/mozilla/enterprise-admin-reference/pull/70)
26+
- `Sync` policy: Enable or disable sync and define which data to include. [#70](https://github.com/mozilla/enterprise-admin-reference/pull/70)
2627

2728
## fx-150.0.0
2829

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
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

Comments
 (0)