@@ -967,6 +967,14 @@ Configuration for `analytics`.
967967# URL to which reports are sent
968968# CLI flag: -reporting.usage-stats-url
969969[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>]
970978` ` `
971979
972980# ## attributes_config
@@ -2551,6 +2559,7 @@ The `frontend` block configures the Loki query-frontend.
25512559[tail_proxy_url: <string> | default = ""]
25522560
25532561# The TLS configuration.
2562+ # The CLI flags prefix for this block configuration is: frontend.tail-tls-config
25542563[tail_tls_config: <tls_config>]
25552564` ` `
25562565
@@ -6355,30 +6364,35 @@ chunk_tables_provisioning:
63556364
63566365# ## tls_config
63576366
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+
63596373
63606374` ` ` yaml
63616375# Path to the client certificate, which will be used for authenticating with the
63626376# 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
63646378[tls_cert_path: <string> | default = ""]
63656379
63666380# Path to the key for the client certificate. Also requires the client
63676381# certificate to be configured.
6368- # CLI flag: -frontend.tail-tls-config .tls-key-path
6382+ # CLI flag: -<prefix> .tls-key-path
63696383[tls_key_path: <string> | default = ""]
63706384
63716385# Path to the CA certificates to validate server certificate against. If not
63726386# 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
63746388[tls_ca_path: <string> | default = ""]
63756389
63766390# 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
63786392[tls_server_name: <string> | default = ""]
63796393
63806394# Skip validating server certificate.
6381- # CLI flag: -frontend.tail-tls-config .tls-insecure-skip-verify
6395+ # CLI flag: -<prefix> .tls-insecure-skip-verify
63826396[tls_insecure_skip_verify: <boolean> | default = false]
63836397
63846398# Override the default cipher suite list (separated by commas). Allowed values:
@@ -6411,12 +6425,12 @@ The TLS configuration.
64116425# - TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA
64126426# - TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256
64136427# - 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
64156429[tls_cipher_suites: <string> | default = ""]
64166430
64176431# Override the default minimum TLS version. Allowed values: VersionTLS10,
64186432# VersionTLS11, VersionTLS12, VersionTLS13
6419- # CLI flag: -frontend.tail-tls-config .tls-min-version
6433+ # CLI flag: -<prefix> .tls-min-version
64206434[tls_min_version: <string> | default = ""]
64216435` ` `
64226436
0 commit comments