Skip to content

LocalNetworkAccess example for SkipDomains shows a URL, but firefox expects a hostname #223

Description

@ubergeek42

Page URL

https://firefox-admin-docs.mozilla.org/reference/policies/localnetworkaccess/

What specific section or headline is this issue about?

Examples

What did you expect to see?

The rest of the documentation is correct, but the example shows a URL which is misleading, as it wants a hostname.

I guess it's caused by this line:

"LocalNetworkAccess": {
"type": "object",
"x-category": "Network security",
"description": "Configure local network access security features.",
"examples": [
{
"Enabled": true,
"BlockTrackers": true,
"EnablePrompting": true,
"SkipDomains": ["https://example.org/"],
"Locked": true
}

It should probably be

    "LocalNetworkAccess": {
      "type": "object",
      "x-category": "Network security",
      "description": "Configure local network access security features.",
      "examples": [
        {
          "Enabled": true,
          "BlockTrackers": true,
          "EnablePrompting": true,
-          "SkipDomains": ["https://example.org/"],
+          "SkipDomains": ["example.org"],
          "Locked": true
        }
      ],

Do you have anything more you want to share?

No response

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions