app/vmauth: fixes ip_filters typo at example_config

url_map section cannot have ip_filters. Only top level config section
have it.
This commit is contained in:
f41gh7 2024-11-28 16:12:40 +01:00
parent e1d9c32f04
commit 92d884eeb7
No known key found for this signature in database
GPG key ID: 4558311CF775EC72

View file

@ -22,7 +22,9 @@ users:
# - or http://default2:8888/unsupported_url_handler?request_path=/non/existing/path
#
# Regular expressions are allowed in `src_paths` entries.
- username: "foobar"
- username: "foobar"
ip_filters:
deny_list: [127.0.0.1]
url_map:
- src_paths:
- "/api/v1/query"
@ -35,8 +37,6 @@ users:
url_prefix: "http://vminsert:8480/insert/42/prometheus"
headers:
- "X-Scope-OrgID: abc"
ip_filters:
deny_list: [127.0.0.1]
default_url:
- "http://default1:8888/unsupported_url_handler"
- "http://default2:8888/unsupported_url_handler"