diff --git a/docs/reference/configuration-reference/reporting-settings.md b/docs/reference/configuration-reference/reporting-settings.md index 7cd060c7deba6..9f37b2a1b5d35 100644 --- a/docs/reference/configuration-reference/reporting-settings.md +++ b/docs/reference/configuration-reference/reporting-settings.md @@ -196,6 +196,15 @@ xpack.screenshotting.networkPolicy: rules: [ { allow: true, host: "placeholder.com", protocol: "https:" } ] ``` +Example of a baseline configuration for disallowing all requests to external paths: +```yaml +xpack.screenshotting.networkPolicy: + rules: [ { allow: true, host: "localhost:5601", protocol: "http:" } ] +``` +::::{note} +Typically, Chromium will connect to {{kib}} on a local interface, but this may be different based on the environment and specific [headless browser connection settings](#reporting-kibana-server-settings). +:::: + A final `allow` rule with no host or protocol allows all requests that are not explicitly denied: ```yaml