AccessConnector
Configure an Access Connector for proxying web traffic. When this policy is set, Firefox traffic matching the specified URL patterns is routed through the configured proxy.
Compatibility: Firefox Enterprise 149.0.0
CCK2 Equivalent: N/A
Preferences Affected: N/A
Examples
Section titled “Examples”{ "policies": { "AccessConnector": { "Host": "company-hq.company.com", "Port": 443 } }}{ "policies": { "AccessConnector": { "Host": "documents.company.com", "Port": 443, "MatchPatterns": [ "/finance*", "/hr*" ], "Locked": true } }}JSON schema
{ "type": "object", "properties": { "Host": { "type": "string" }, "Port": { "type": "number" }, "MatchPatterns": { "type": "array", "items": { "type": "string" } }, "Locked": { "type": "boolean" } }, "required": [ "Host", "Port" ]}Values
Section titled “Values”Host: A string that defines the hostname or IP address of the proxy server to use.Port: A number defining the port number of the proxy server (e.g.,443).MatchPatterns: A list of URL match patterns for which traffic should be routed through the Access Connector. See Match patterns for syntax.Locked: Prevents the user from changing Access Connector settings.
Windows (GPO)
Section titled “Windows (GPO)”Software\Policies\Mozilla\Firefox\AccessConnector\Host = "proxy.example.com"Software\Policies\Mozilla\Firefox\AccessConnector\Port = 443Software\Policies\Mozilla\Firefox\AccessConnector\MatchPatterns\1 = "https://*.example.com"Software\Policies\Mozilla\Firefox\AccessConnector\Locked = 0x1 | 0x0<dict> <key>AccessConnector</key> <dict> <key>Host</key> <string>proxy.example.com</string> <key>Port</key> <integer>443</integer> <key>MatchPatterns</key> <array> <string>https://*.example.com</string> </array> <key>Locked</key> <true/> | <false/> </dict></dict>