diff --git a/docs/settings/reporting-settings.asciidoc b/docs/settings/reporting-settings.asciidoc index a2141a9378d22..0c0dfd96ce5e7 100644 --- a/docs/settings/reporting-settings.asciidoc +++ b/docs/settings/reporting-settings.asciidoc @@ -241,6 +241,16 @@ xpack.screenshotting.networkPolicy: rules: [ { allow: true, host: "elastic.co", protocol: "https:" } ] ------------------------------------------------------- +Example of a baseline configuration for disallowing all requests to external paths: + +[source,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 <>. + A final `allow` rule with no host or protocol allows all requests that are not explicitly denied: [source,yaml]