mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-23 12:31:07 +01:00
app/vmauth: refer ip_filters option in example auth config
Updates https://github.com/VictoriaMetrics/VictoriaMetrics/issues/3491
This commit is contained in:
parent
8f43f496d7
commit
23595465b8
@ -184,6 +184,8 @@ users:
|
|||||||
url_prefix: "http://vminsert:8480/insert/42/prometheus"
|
url_prefix: "http://vminsert:8480/insert/42/prometheus"
|
||||||
headers:
|
headers:
|
||||||
- "X-Scope-OrgID: abc"
|
- "X-Scope-OrgID: abc"
|
||||||
|
ip_filters:
|
||||||
|
deny_list: [127.0.0.1]
|
||||||
|
|
||||||
# A single user for querying and inserting data:
|
# A single user for querying and inserting data:
|
||||||
# - Requests to http://vmauth:8427/api/v1/query, http://vmauth:8427/api/v1/query_range
|
# - Requests to http://vmauth:8427/api/v1/query, http://vmauth:8427/api/v1/query_range
|
||||||
@ -193,37 +195,42 @@ users:
|
|||||||
# For example, http://vmauth:8427/api/v1/query is proxied to http://vmselect1:8480/select/42/prometheus/api/v1/query
|
# For example, http://vmauth:8427/api/v1/query is proxied to http://vmselect1:8480/select/42/prometheus/api/v1/query
|
||||||
# or to http://vmselect2:8480/select/42/prometheus/api/v1/query .
|
# or to http://vmselect2:8480/select/42/prometheus/api/v1/query .
|
||||||
# - Requests to http://vmauth:8427/api/v1/write are proxied to http://vminsert:8480/insert/42/prometheus/api/v1/write .
|
# - Requests to http://vmauth:8427/api/v1/write are proxied to http://vminsert:8480/insert/42/prometheus/api/v1/write .
|
||||||
# The requests which do not match `src_paths` from the `url_map` will be proxied to the urls rom `default_url`
|
# The requests which do not match `src_paths` from the `url_map` will be proxied to the urls rom `default_url`
|
||||||
# in a round-robin manner (with request path in `request_path` query param).
|
# in a round-robin manner (with request path in `request_path` query param).
|
||||||
# For example, request to http://vmauth:8427/non/existing/path will be proxied:
|
# For example, request to http://vmauth:8427/non/existing/path will be proxied:
|
||||||
# - to http://default1:8888/process?request_path=/non/existing/path
|
# - to http://default1:8888/process?request_path=/non/existing/path
|
||||||
# - or http://default2:8888/process?request_path=/non/existing/path
|
# - or http://default2:8888/process?request_path=/non/existing/path
|
||||||
- username: "foobar"
|
- username: "foobar"
|
||||||
url_map:
|
url_map:
|
||||||
- src_paths:
|
- src_paths:
|
||||||
- "/api/v1/query"
|
- "/api/v1/query"
|
||||||
- "/api/v1/query_range"
|
- "/api/v1/query_range"
|
||||||
- "/api/v1/label/[^/]+/values"
|
- "/api/v1/label/[^/]+/values"
|
||||||
url_prefix:
|
url_prefix:
|
||||||
- "http://vmselect1:8481/select/42/prometheus"
|
- "http://vmselect1:8481/select/42/prometheus"
|
||||||
- "http://vmselect2:8481/select/42/prometheus"
|
- "http://vmselect2:8481/select/42/prometheus"
|
||||||
- src_paths: ["/api/v1/write"]
|
- src_paths: ["/api/v1/write"]
|
||||||
url_prefix: "http://vminsert:8480/insert/42/prometheus"
|
url_prefix: "http://vminsert:8480/insert/42/prometheus"
|
||||||
default_url:
|
default_url:
|
||||||
- "http://default1:8888/process"
|
- "http://default1:8888/process"
|
||||||
- "http://default2:8888/process"
|
- "http://default2:8888/process"
|
||||||
|
|
||||||
# This requests will be executed for requests without Authorization header.
|
# Requests without Authorization header are routed according to `unauthorized_user` section.
|
||||||
# For instance, http://vmauth:8427/api/v1/query will be proxied to http://vmselect1:8481/select/0/prometheus/api/v1/query
|
|
||||||
unauthorized_user:
|
unauthorized_user:
|
||||||
url_map:
|
url_map:
|
||||||
- src_paths:
|
- src_paths:
|
||||||
- /health
|
- /api/v1/query
|
||||||
- /api/v1/query/
|
- /api/v1/query_range
|
||||||
- /api/v1/query_range
|
url_prefix:
|
||||||
url_prefix:
|
- http://vmselect1:8481/select/0/prometheus
|
||||||
- http://vmselect1:8481/select/0/prometheus
|
- http://vmselect2:8481/select/0/prometheus
|
||||||
- http://vmselect2:8481/select/0/prometheus
|
ip_filters:
|
||||||
|
allow_list: [8.8.8.8]
|
||||||
|
|
||||||
|
ip_filters:
|
||||||
|
allow_list: ["1.2.3.0/24", "127.0.0.1"]
|
||||||
|
deny_list:
|
||||||
|
- 10.1.0.1
|
||||||
```
|
```
|
||||||
|
|
||||||
The config may contain `%{ENV_VAR}` placeholders, which are substituted by the corresponding `ENV_VAR` environment variable values.
|
The config may contain `%{ENV_VAR}` placeholders, which are substituted by the corresponding `ENV_VAR` environment variable values.
|
||||||
|
@ -81,3 +81,50 @@ users:
|
|||||||
url_prefix: "http://vminsert:8480/insert/42/prometheus"
|
url_prefix: "http://vminsert:8480/insert/42/prometheus"
|
||||||
headers:
|
headers:
|
||||||
- "X-Scope-OrgID: abc"
|
- "X-Scope-OrgID: abc"
|
||||||
|
ip_filters:
|
||||||
|
deny_list: [127.0.0.1]
|
||||||
|
|
||||||
|
# A single user for querying and inserting data:
|
||||||
|
# - Requests to http://vmauth:8427/api/v1/query, http://vmauth:8427/api/v1/query_range
|
||||||
|
# and http://vmauth:8427/api/v1/label/<label_name>/values are proxied to the following urls in a round-robin manner:
|
||||||
|
# - http://vmselect1:8481/select/42/prometheus
|
||||||
|
# - http://vmselect2:8481/select/42/prometheus
|
||||||
|
# For example, http://vmauth:8427/api/v1/query is proxied to http://vmselect1:8480/select/42/prometheus/api/v1/query
|
||||||
|
# or to http://vmselect2:8480/select/42/prometheus/api/v1/query .
|
||||||
|
# - Requests to http://vmauth:8427/api/v1/write are proxied to http://vminsert:8480/insert/42/prometheus/api/v1/write .
|
||||||
|
# The requests which do not match `src_paths` from the `url_map` will be proxied to the urls rom `default_url`
|
||||||
|
# in a round-robin manner (with request path in `request_path` query param).
|
||||||
|
# For example, request to http://vmauth:8427/non/existing/path will be proxied:
|
||||||
|
# - to http://default1:8888/process?request_path=/non/existing/path
|
||||||
|
# - or http://default2:8888/process?request_path=/non/existing/path
|
||||||
|
- username: "foobar"
|
||||||
|
url_map:
|
||||||
|
- src_paths:
|
||||||
|
- "/api/v1/query"
|
||||||
|
- "/api/v1/query_range"
|
||||||
|
- "/api/v1/label/[^/]+/values"
|
||||||
|
url_prefix:
|
||||||
|
- "http://vmselect1:8481/select/42/prometheus"
|
||||||
|
- "http://vmselect2:8481/select/42/prometheus"
|
||||||
|
- src_paths: ["/api/v1/write"]
|
||||||
|
url_prefix: "http://vminsert:8480/insert/42/prometheus"
|
||||||
|
default_url:
|
||||||
|
- "http://default1:8888/process"
|
||||||
|
- "http://default2:8888/process"
|
||||||
|
|
||||||
|
# Requests without Authorization header are routed according to `unauthorized_user` section.
|
||||||
|
unauthorized_user:
|
||||||
|
url_map:
|
||||||
|
- src_paths:
|
||||||
|
- /api/v1/query
|
||||||
|
- /api/v1/query_range
|
||||||
|
url_prefix:
|
||||||
|
- http://vmselect1:8481/select/0/prometheus
|
||||||
|
- http://vmselect2:8481/select/0/prometheus
|
||||||
|
ip_filters:
|
||||||
|
allow_list: [8.8.8.8]
|
||||||
|
|
||||||
|
ip_filters:
|
||||||
|
allow_list: ["1.2.3.0/24", "127.0.0.1"]
|
||||||
|
deny_list:
|
||||||
|
- 10.1.0.1
|
||||||
|
@ -188,6 +188,8 @@ users:
|
|||||||
url_prefix: "http://vminsert:8480/insert/42/prometheus"
|
url_prefix: "http://vminsert:8480/insert/42/prometheus"
|
||||||
headers:
|
headers:
|
||||||
- "X-Scope-OrgID: abc"
|
- "X-Scope-OrgID: abc"
|
||||||
|
ip_filters:
|
||||||
|
deny_list: [127.0.0.1]
|
||||||
|
|
||||||
# A single user for querying and inserting data:
|
# A single user for querying and inserting data:
|
||||||
# - Requests to http://vmauth:8427/api/v1/query, http://vmauth:8427/api/v1/query_range
|
# - Requests to http://vmauth:8427/api/v1/query, http://vmauth:8427/api/v1/query_range
|
||||||
@ -197,37 +199,42 @@ users:
|
|||||||
# For example, http://vmauth:8427/api/v1/query is proxied to http://vmselect1:8480/select/42/prometheus/api/v1/query
|
# For example, http://vmauth:8427/api/v1/query is proxied to http://vmselect1:8480/select/42/prometheus/api/v1/query
|
||||||
# or to http://vmselect2:8480/select/42/prometheus/api/v1/query .
|
# or to http://vmselect2:8480/select/42/prometheus/api/v1/query .
|
||||||
# - Requests to http://vmauth:8427/api/v1/write are proxied to http://vminsert:8480/insert/42/prometheus/api/v1/write .
|
# - Requests to http://vmauth:8427/api/v1/write are proxied to http://vminsert:8480/insert/42/prometheus/api/v1/write .
|
||||||
# The requests which do not match `src_paths` from the `url_map` will be proxied to the urls rom `default_url`
|
# The requests which do not match `src_paths` from the `url_map` will be proxied to the urls rom `default_url`
|
||||||
# in a round-robin manner (with request path in `request_path` query param).
|
# in a round-robin manner (with request path in `request_path` query param).
|
||||||
# For example, request to http://vmauth:8427/non/existing/path will be proxied:
|
# For example, request to http://vmauth:8427/non/existing/path will be proxied:
|
||||||
# - to http://default1:8888/process?request_path=/non/existing/path
|
# - to http://default1:8888/process?request_path=/non/existing/path
|
||||||
# - or http://default2:8888/process?request_path=/non/existing/path
|
# - or http://default2:8888/process?request_path=/non/existing/path
|
||||||
- username: "foobar"
|
- username: "foobar"
|
||||||
url_map:
|
url_map:
|
||||||
- src_paths:
|
- src_paths:
|
||||||
- "/api/v1/query"
|
- "/api/v1/query"
|
||||||
- "/api/v1/query_range"
|
- "/api/v1/query_range"
|
||||||
- "/api/v1/label/[^/]+/values"
|
- "/api/v1/label/[^/]+/values"
|
||||||
url_prefix:
|
url_prefix:
|
||||||
- "http://vmselect1:8481/select/42/prometheus"
|
- "http://vmselect1:8481/select/42/prometheus"
|
||||||
- "http://vmselect2:8481/select/42/prometheus"
|
- "http://vmselect2:8481/select/42/prometheus"
|
||||||
- src_paths: ["/api/v1/write"]
|
- src_paths: ["/api/v1/write"]
|
||||||
url_prefix: "http://vminsert:8480/insert/42/prometheus"
|
url_prefix: "http://vminsert:8480/insert/42/prometheus"
|
||||||
default_url:
|
default_url:
|
||||||
- "http://default1:8888/process"
|
- "http://default1:8888/process"
|
||||||
- "http://default2:8888/process"
|
- "http://default2:8888/process"
|
||||||
|
|
||||||
# This requests will be executed for requests without Authorization header.
|
# Requests without Authorization header are routed according to `unauthorized_user` section.
|
||||||
# For instance, http://vmauth:8427/api/v1/query will be proxied to http://vmselect1:8481/select/0/prometheus/api/v1/query
|
|
||||||
unauthorized_user:
|
unauthorized_user:
|
||||||
url_map:
|
url_map:
|
||||||
- src_paths:
|
- src_paths:
|
||||||
- /health
|
- /api/v1/query
|
||||||
- /api/v1/query/
|
- /api/v1/query_range
|
||||||
- /api/v1/query_range
|
url_prefix:
|
||||||
url_prefix:
|
- http://vmselect1:8481/select/0/prometheus
|
||||||
- http://vmselect1:8481/select/0/prometheus
|
- http://vmselect2:8481/select/0/prometheus
|
||||||
- http://vmselect2:8481/select/0/prometheus
|
ip_filters:
|
||||||
|
allow_list: [8.8.8.8]
|
||||||
|
|
||||||
|
ip_filters:
|
||||||
|
allow_list: ["1.2.3.0/24", "127.0.0.1"]
|
||||||
|
deny_list:
|
||||||
|
- 10.1.0.1
|
||||||
```
|
```
|
||||||
|
|
||||||
The config may contain `%{ENV_VAR}` placeholders, which are substituted by the corresponding `ENV_VAR` environment variable values.
|
The config may contain `%{ENV_VAR}` placeholders, which are substituted by the corresponding `ENV_VAR` environment variable values.
|
||||||
|
Loading…
Reference in New Issue
Block a user