@@ -967,6 +967,14 @@ Configuration for `analytics`.
967
967
# URL to which reports are sent
968
968
# CLI flag: -reporting.usage-stats-url
969
969
[usage_stats_url: <string> | default = "https://stats.grafana.org/loki-usage-report"]
970
+
971
+ # URL to the proxy server
972
+ # CLI flag: -reporting.proxy-url
973
+ [proxy_url: <string> | default = ""]
974
+
975
+ # The TLS configuration.
976
+ # The CLI flags prefix for this block configuration is: reporting.tls-config
977
+ [tls_config: <tls_config>]
970
978
` ` `
971
979
972
980
# ## attributes_config
@@ -2551,6 +2559,7 @@ The `frontend` block configures the Loki query-frontend.
2551
2559
[tail_proxy_url: <string> | default = ""]
2552
2560
2553
2561
# The TLS configuration.
2562
+ # The CLI flags prefix for this block configuration is: frontend.tail-tls-config
2554
2563
[tail_tls_config: <tls_config>]
2555
2564
` ` `
2556
2565
@@ -6355,30 +6364,35 @@ chunk_tables_provisioning:
6355
6364
6356
6365
# ## tls_config
6357
6366
6358
- The TLS configuration.
6367
+ The TLS configuration. The supported CLI flags `<prefix>` used to reference this configuration block are :
6368
+
6369
+ - ` frontend.tail-tls-config`
6370
+ - ` reporting.tls-config`
6371
+
6372
+
6359
6373
6360
6374
` ` ` yaml
6361
6375
# Path to the client certificate, which will be used for authenticating with the
6362
6376
# server. Also requires the key path to be configured.
6363
- # CLI flag: -frontend.tail-tls-config .tls-cert-path
6377
+ # CLI flag: -<prefix> .tls-cert-path
6364
6378
[tls_cert_path: <string> | default = ""]
6365
6379
6366
6380
# Path to the key for the client certificate. Also requires the client
6367
6381
# certificate to be configured.
6368
- # CLI flag: -frontend.tail-tls-config .tls-key-path
6382
+ # CLI flag: -<prefix> .tls-key-path
6369
6383
[tls_key_path: <string> | default = ""]
6370
6384
6371
6385
# Path to the CA certificates to validate server certificate against. If not
6372
6386
# set, the host's root CA certificates are used.
6373
- # CLI flag: -frontend.tail-tls-config .tls-ca-path
6387
+ # CLI flag: -<prefix> .tls-ca-path
6374
6388
[tls_ca_path: <string> | default = ""]
6375
6389
6376
6390
# Override the expected name on the server certificate.
6377
- # CLI flag: -frontend.tail-tls-config .tls-server-name
6391
+ # CLI flag: -<prefix> .tls-server-name
6378
6392
[tls_server_name: <string> | default = ""]
6379
6393
6380
6394
# Skip validating server certificate.
6381
- # CLI flag: -frontend.tail-tls-config .tls-insecure-skip-verify
6395
+ # CLI flag: -<prefix> .tls-insecure-skip-verify
6382
6396
[tls_insecure_skip_verify: <boolean> | default = false]
6383
6397
6384
6398
# Override the default cipher suite list (separated by commas). Allowed values:
@@ -6411,12 +6425,12 @@ The TLS configuration.
6411
6425
# - TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA
6412
6426
# - TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256
6413
6427
# - TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256
6414
- # CLI flag: -frontend.tail-tls-config .tls-cipher-suites
6428
+ # CLI flag: -<prefix> .tls-cipher-suites
6415
6429
[tls_cipher_suites: <string> | default = ""]
6416
6430
6417
6431
# Override the default minimum TLS version. Allowed values: VersionTLS10,
6418
6432
# VersionTLS11, VersionTLS12, VersionTLS13
6419
- # CLI flag: -frontend.tail-tls-config .tls-min-version
6433
+ # CLI flag: -<prefix> .tls-min-version
6420
6434
[tls_min_version: <string> | default = ""]
6421
6435
` ` `
6422
6436
0 commit comments