kibana/docs/settings/url-drilldown-settings.asciidoc
gchaps 514d40c7a1
[DOCS] Reformats settings in drilldown doc (#120299)
* [DOCS] Reformats settings in drilldown doc

* Update docs/settings/url-drilldown-settings.asciidoc

* Update docs/settings/url-drilldown-settings.asciidoc

* Update docs/settings/url-drilldown-settings.asciidoc

* Update docs/settings/url-drilldown-settings.asciidoc

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
2021-12-06 11:52:40 -08:00

24 lines
802 B
Text

[[url-drilldown-settings-kb]]
=== URL drilldown settings in {kib}
++++
<titleabbrev>URL drilldown settings</titleabbrev>
++++
Configure the URL drilldown settings in your `kibana.yml` configuration file.
[[external-URL-policy]] `externalUrl.policy`::
Configures the external URL policies. URL drilldowns respect the global *External URL* service, which you can use to deny or allow external URLs.
By default all external URLs are allowed.
+
For example, to allow only external URLs to the `example.com` domain with the `https` scheme, except for the `danger.example.com` sub-domain,
which is denied even when `https` scheme is used:
+
["source","yml"]
-----------
externalUrl.policy:
- allow: false
host: danger.example.com
- allow: true
host: example.com
protocol: https
-----------