Skip to content

Commit d3ac99e

Browse files
committed
Sync web site with Quarkus documentation
1 parent 24640dd commit d3ac99e

15 files changed

+345
-198
lines changed

_generated-doc/latest/config/quarkus-all-config.adoc

Lines changed: 58 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -17400,7 +17400,9 @@ If this is the string `common`, `combined` or `long` then this will use one of t
1740017400

1740117401
- common: `%h %l %u %t "%r" %s %b` - combined: `%h %l %u %t "%r" %s %b "%++{++i,Referer++}++" "%++{++i,User-Agent++}++"` - long: `%r++\++n%++{++ALL_REQUEST_HEADERS++}++`
1740217402

17403-
Otherwise, consult the Quarkus documentation for the full list of variables that can be used.
17403+
Otherwise, consult the Quarkus documentation for the full list of variables that can be used. Note that enabling the `%++{++ALL_REQUEST_HEADERS++}++` attribute directly or with a `long` named format introduces a risk of sensitive header values being logged.
17404+
17405+
HTTP `Authorization` header value is always masked. Use the `masked-headers()` property to mask other sensitive headers.
1740417406

1740517407

1740617408
ifdef::add-copy-button-to-env-var[]
@@ -17413,6 +17415,48 @@ endif::add-copy-button-to-env-var[]
1741317415
|string
1741417416
|`+++common+++`
1741517417

17418+
a| [[quarkus-vertx-http_quarkus-http-access-log-masked-headers]] [.property-path]##link:#quarkus-vertx-http_quarkus-http-access-log-masked-headers[`quarkus.http.access-log.masked-headers`]##
17419+
ifdef::add-copy-button-to-config-props[]
17420+
config_property_copy_button:+++quarkus.http.access-log.masked-headers+++[]
17421+
endif::add-copy-button-to-config-props[]
17422+
17423+
17424+
[.description]
17425+
--
17426+
Set of HTTP headers whose values must be masked when the `%++{++ALL_REQUEST_HEADERS++}++` attribute is enabled with the `pattern()` property.
17427+
17428+
17429+
ifdef::add-copy-button-to-env-var[]
17430+
Environment variable: env_var_with_copy_button:+++QUARKUS_HTTP_ACCESS_LOG_MASKED_HEADERS+++[]
17431+
endif::add-copy-button-to-env-var[]
17432+
ifndef::add-copy-button-to-env-var[]
17433+
Environment variable: `+++QUARKUS_HTTP_ACCESS_LOG_MASKED_HEADERS+++`
17434+
endif::add-copy-button-to-env-var[]
17435+
--
17436+
|list of string
17437+
|
17438+
17439+
a| [[quarkus-vertx-http_quarkus-http-access-log-masked-cookies]] [.property-path]##link:#quarkus-vertx-http_quarkus-http-access-log-masked-cookies[`quarkus.http.access-log.masked-cookies`]##
17440+
ifdef::add-copy-button-to-config-props[]
17441+
config_property_copy_button:+++quarkus.http.access-log.masked-cookies+++[]
17442+
endif::add-copy-button-to-config-props[]
17443+
17444+
17445+
[.description]
17446+
--
17447+
Set of HTTP Cookie headers whose values must be masked when the `%++{++ALL_REQUEST_HEADERS++}++` attribute is enabled with the `pattern()` property.
17448+
17449+
17450+
ifdef::add-copy-button-to-env-var[]
17451+
Environment variable: env_var_with_copy_button:+++QUARKUS_HTTP_ACCESS_LOG_MASKED_COOKIES+++[]
17452+
endif::add-copy-button-to-env-var[]
17453+
ifndef::add-copy-button-to-env-var[]
17454+
Environment variable: `+++QUARKUS_HTTP_ACCESS_LOG_MASKED_COOKIES+++`
17455+
endif::add-copy-button-to-env-var[]
17456+
--
17457+
|list of string
17458+
|
17459+
1741617460
a| [[quarkus-vertx-http_quarkus-http-access-log-log-to-file]] [.property-path]##link:#quarkus-vertx-http_quarkus-http-access-log-log-to-file[`quarkus.http.access-log.log-to-file`]##
1741717461
ifdef::add-copy-button-to-config-props[]
1741817462
config_property_copy_button:+++quarkus.http.access-log.log-to-file+++[]
@@ -81285,24 +81329,24 @@ endif::add-copy-button-to-env-var[]
8128581329
a|`resp2`, `resp3`
8128681330
|`+++resp3+++`
8128781331

81288-
a| [[quarkus-redis-client_quarkus-redis-hash-slot-cache-ttl]] [.property-path]##link:#quarkus-redis-client_quarkus-redis-hash-slot-cache-ttl[`quarkus.redis.hash-slot-cache-ttl`]##
81332+
a| [[quarkus-redis-client_quarkus-redis-topology-cache-ttl]] [.property-path]##link:#quarkus-redis-client_quarkus-redis-topology-cache-ttl[`quarkus.redis.topology-cache-ttl`]##
8128981333
ifdef::add-copy-button-to-config-props[]
81290-
config_property_copy_button:+++quarkus.redis.hash-slot-cache-ttl+++[]
81334+
config_property_copy_button:+++quarkus.redis.topology-cache-ttl+++[]
8129181335
endif::add-copy-button-to-config-props[]
8129281336

8129381337

8129481338
[.description]
8129581339
--
81296-
The TTL of the hash slot cache. A hash slot cache is used by the clustered Redis client to prevent constantly sending `CLUSTER SLOTS` commands to the first statically configured cluster node.
81340+
The TTL of the topology cache. A topology cache is used by a clustered Redis client and a sentinel Redis client to prevent constantly sending topology discovery commands (`CLUSTER SLOTS` or `SENTINEL ...`).
8129781341

81298-
This setting is only meaningful in case of a clustered Redis client and has no effect otherwise.
81342+
This setting is only meaningful in case of a clustered Redis client and a sentinel Redis client and has no effect otherwise.
8129981343

8130081344

8130181345
ifdef::add-copy-button-to-env-var[]
81302-
Environment variable: env_var_with_copy_button:+++QUARKUS_REDIS_HASH_SLOT_CACHE_TTL+++[]
81346+
Environment variable: env_var_with_copy_button:+++QUARKUS_REDIS_TOPOLOGY_CACHE_TTL+++[]
8130381347
endif::add-copy-button-to-env-var[]
8130481348
ifndef::add-copy-button-to-env-var[]
81305-
Environment variable: `+++QUARKUS_REDIS_HASH_SLOT_CACHE_TTL+++`
81349+
Environment variable: `+++QUARKUS_REDIS_TOPOLOGY_CACHE_TTL+++`
8130681350
endif::add-copy-button-to-env-var[]
8130781351
--
8130881352
|link:https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/time/Duration.html[Duration] link:#duration-note-anchor-all-config[icon:question-circle[title=More information about the Duration format]]
@@ -81915,24 +81959,24 @@ endif::add-copy-button-to-env-var[]
8191581959
a|`resp2`, `resp3`
8191681960
|`+++resp3+++`
8191781961

81918-
a| [[quarkus-redis-client_quarkus-redis-redis-client-name-hash-slot-cache-ttl]] [.property-path]##link:#quarkus-redis-client_quarkus-redis-redis-client-name-hash-slot-cache-ttl[`quarkus.redis."redis-client-name".hash-slot-cache-ttl`]##
81962+
a| [[quarkus-redis-client_quarkus-redis-redis-client-name-topology-cache-ttl]] [.property-path]##link:#quarkus-redis-client_quarkus-redis-redis-client-name-topology-cache-ttl[`quarkus.redis."redis-client-name".topology-cache-ttl`]##
8191981963
ifdef::add-copy-button-to-config-props[]
81920-
config_property_copy_button:+++quarkus.redis."redis-client-name".hash-slot-cache-ttl+++[]
81964+
config_property_copy_button:+++quarkus.redis."redis-client-name".topology-cache-ttl+++[]
8192181965
endif::add-copy-button-to-config-props[]
8192281966

8192381967

8192481968
[.description]
8192581969
--
81926-
The TTL of the hash slot cache. A hash slot cache is used by the clustered Redis client to prevent constantly sending `CLUSTER SLOTS` commands to the first statically configured cluster node.
81970+
The TTL of the topology cache. A topology cache is used by a clustered Redis client and a sentinel Redis client to prevent constantly sending topology discovery commands (`CLUSTER SLOTS` or `SENTINEL ...`).
8192781971

81928-
This setting is only meaningful in case of a clustered Redis client and has no effect otherwise.
81972+
This setting is only meaningful in case of a clustered Redis client and a sentinel Redis client and has no effect otherwise.
8192981973

8193081974

8193181975
ifdef::add-copy-button-to-env-var[]
81932-
Environment variable: env_var_with_copy_button:+++QUARKUS_REDIS__REDIS_CLIENT_NAME__HASH_SLOT_CACHE_TTL+++[]
81976+
Environment variable: env_var_with_copy_button:+++QUARKUS_REDIS__REDIS_CLIENT_NAME__TOPOLOGY_CACHE_TTL+++[]
8193381977
endif::add-copy-button-to-env-var[]
8193481978
ifndef::add-copy-button-to-env-var[]
81935-
Environment variable: `+++QUARKUS_REDIS__REDIS_CLIENT_NAME__HASH_SLOT_CACHE_TTL+++`
81979+
Environment variable: `+++QUARKUS_REDIS__REDIS_CLIENT_NAME__TOPOLOGY_CACHE_TTL+++`
8193681980
endif::add-copy-button-to-env-var[]
8193781981
--
8193881982
|link:https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/time/Duration.html[Duration] link:#duration-note-anchor-all-config[icon:question-circle[title=More information about the Duration format]]
@@ -86705,7 +86749,7 @@ Environment variable: `+++QUARKUS_REST_CLIENT__CLIENT__DISABLE_DEFAULT_MAPPER+++
8670586749
endif::add-copy-button-to-env-var[]
8670686750
--
8670786751
|boolean
86708-
|`+++${microprofile.rest.client.disable.default.mapper:false}+++`
86752+
|`+++false+++`
8670986753

8671086754
a| [[quarkus-rest-client-config_quarkus-rest-client-client-logging-scope]] [.property-path]##link:#quarkus-rest-client-config_quarkus-rest-client-client-logging-scope[`quarkus.rest-client."client".logging.scope`]##
8671186755
ifdef::add-copy-button-to-config-props[]

_generated-doc/latest/config/quarkus-redis-client.adoc

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -485,24 +485,24 @@ endif::add-copy-button-to-env-var[]
485485
a|`resp2`, `resp3`
486486
|`+++resp3+++`
487487

488-
a| [[quarkus-redis-client_quarkus-redis-hash-slot-cache-ttl]] [.property-path]##link:#quarkus-redis-client_quarkus-redis-hash-slot-cache-ttl[`quarkus.redis.hash-slot-cache-ttl`]##
488+
a| [[quarkus-redis-client_quarkus-redis-topology-cache-ttl]] [.property-path]##link:#quarkus-redis-client_quarkus-redis-topology-cache-ttl[`quarkus.redis.topology-cache-ttl`]##
489489
ifdef::add-copy-button-to-config-props[]
490-
config_property_copy_button:+++quarkus.redis.hash-slot-cache-ttl+++[]
490+
config_property_copy_button:+++quarkus.redis.topology-cache-ttl+++[]
491491
endif::add-copy-button-to-config-props[]
492492

493493

494494
[.description]
495495
--
496-
The TTL of the hash slot cache. A hash slot cache is used by the clustered Redis client to prevent constantly sending `CLUSTER SLOTS` commands to the first statically configured cluster node.
496+
The TTL of the topology cache. A topology cache is used by a clustered Redis client and a sentinel Redis client to prevent constantly sending topology discovery commands (`CLUSTER SLOTS` or `SENTINEL ...`).
497497

498-
This setting is only meaningful in case of a clustered Redis client and has no effect otherwise.
498+
This setting is only meaningful in case of a clustered Redis client and a sentinel Redis client and has no effect otherwise.
499499

500500

501501
ifdef::add-copy-button-to-env-var[]
502-
Environment variable: env_var_with_copy_button:+++QUARKUS_REDIS_HASH_SLOT_CACHE_TTL+++[]
502+
Environment variable: env_var_with_copy_button:+++QUARKUS_REDIS_TOPOLOGY_CACHE_TTL+++[]
503503
endif::add-copy-button-to-env-var[]
504504
ifndef::add-copy-button-to-env-var[]
505-
Environment variable: `+++QUARKUS_REDIS_HASH_SLOT_CACHE_TTL+++`
505+
Environment variable: `+++QUARKUS_REDIS_TOPOLOGY_CACHE_TTL+++`
506506
endif::add-copy-button-to-env-var[]
507507
--
508508
|link:https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/time/Duration.html[Duration] link:#duration-note-anchor-quarkus-redis-client_quarkus-redis[icon:question-circle[title=More information about the Duration format]]
@@ -1115,24 +1115,24 @@ endif::add-copy-button-to-env-var[]
11151115
a|`resp2`, `resp3`
11161116
|`+++resp3+++`
11171117

1118-
a| [[quarkus-redis-client_quarkus-redis-redis-client-name-hash-slot-cache-ttl]] [.property-path]##link:#quarkus-redis-client_quarkus-redis-redis-client-name-hash-slot-cache-ttl[`quarkus.redis."redis-client-name".hash-slot-cache-ttl`]##
1118+
a| [[quarkus-redis-client_quarkus-redis-redis-client-name-topology-cache-ttl]] [.property-path]##link:#quarkus-redis-client_quarkus-redis-redis-client-name-topology-cache-ttl[`quarkus.redis."redis-client-name".topology-cache-ttl`]##
11191119
ifdef::add-copy-button-to-config-props[]
1120-
config_property_copy_button:+++quarkus.redis."redis-client-name".hash-slot-cache-ttl+++[]
1120+
config_property_copy_button:+++quarkus.redis."redis-client-name".topology-cache-ttl+++[]
11211121
endif::add-copy-button-to-config-props[]
11221122

11231123

11241124
[.description]
11251125
--
1126-
The TTL of the hash slot cache. A hash slot cache is used by the clustered Redis client to prevent constantly sending `CLUSTER SLOTS` commands to the first statically configured cluster node.
1126+
The TTL of the topology cache. A topology cache is used by a clustered Redis client and a sentinel Redis client to prevent constantly sending topology discovery commands (`CLUSTER SLOTS` or `SENTINEL ...`).
11271127

1128-
This setting is only meaningful in case of a clustered Redis client and has no effect otherwise.
1128+
This setting is only meaningful in case of a clustered Redis client and a sentinel Redis client and has no effect otherwise.
11291129

11301130

11311131
ifdef::add-copy-button-to-env-var[]
1132-
Environment variable: env_var_with_copy_button:+++QUARKUS_REDIS__REDIS_CLIENT_NAME__HASH_SLOT_CACHE_TTL+++[]
1132+
Environment variable: env_var_with_copy_button:+++QUARKUS_REDIS__REDIS_CLIENT_NAME__TOPOLOGY_CACHE_TTL+++[]
11331133
endif::add-copy-button-to-env-var[]
11341134
ifndef::add-copy-button-to-env-var[]
1135-
Environment variable: `+++QUARKUS_REDIS__REDIS_CLIENT_NAME__HASH_SLOT_CACHE_TTL+++`
1135+
Environment variable: `+++QUARKUS_REDIS__REDIS_CLIENT_NAME__TOPOLOGY_CACHE_TTL+++`
11361136
endif::add-copy-button-to-env-var[]
11371137
--
11381138
|link:https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/time/Duration.html[Duration] link:#duration-note-anchor-quarkus-redis-client_quarkus-redis[icon:question-circle[title=More information about the Duration format]]

_generated-doc/latest/config/quarkus-redis-client_quarkus.redis.adoc

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -485,24 +485,24 @@ endif::add-copy-button-to-env-var[]
485485
a|`resp2`, `resp3`
486486
|`+++resp3+++`
487487

488-
a| [[quarkus-redis-client_quarkus-redis-hash-slot-cache-ttl]] [.property-path]##link:#quarkus-redis-client_quarkus-redis-hash-slot-cache-ttl[`quarkus.redis.hash-slot-cache-ttl`]##
488+
a| [[quarkus-redis-client_quarkus-redis-topology-cache-ttl]] [.property-path]##link:#quarkus-redis-client_quarkus-redis-topology-cache-ttl[`quarkus.redis.topology-cache-ttl`]##
489489
ifdef::add-copy-button-to-config-props[]
490-
config_property_copy_button:+++quarkus.redis.hash-slot-cache-ttl+++[]
490+
config_property_copy_button:+++quarkus.redis.topology-cache-ttl+++[]
491491
endif::add-copy-button-to-config-props[]
492492

493493

494494
[.description]
495495
--
496-
The TTL of the hash slot cache. A hash slot cache is used by the clustered Redis client to prevent constantly sending `CLUSTER SLOTS` commands to the first statically configured cluster node.
496+
The TTL of the topology cache. A topology cache is used by a clustered Redis client and a sentinel Redis client to prevent constantly sending topology discovery commands (`CLUSTER SLOTS` or `SENTINEL ...`).
497497

498-
This setting is only meaningful in case of a clustered Redis client and has no effect otherwise.
498+
This setting is only meaningful in case of a clustered Redis client and a sentinel Redis client and has no effect otherwise.
499499

500500

501501
ifdef::add-copy-button-to-env-var[]
502-
Environment variable: env_var_with_copy_button:+++QUARKUS_REDIS_HASH_SLOT_CACHE_TTL+++[]
502+
Environment variable: env_var_with_copy_button:+++QUARKUS_REDIS_TOPOLOGY_CACHE_TTL+++[]
503503
endif::add-copy-button-to-env-var[]
504504
ifndef::add-copy-button-to-env-var[]
505-
Environment variable: `+++QUARKUS_REDIS_HASH_SLOT_CACHE_TTL+++`
505+
Environment variable: `+++QUARKUS_REDIS_TOPOLOGY_CACHE_TTL+++`
506506
endif::add-copy-button-to-env-var[]
507507
--
508508
|link:https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/time/Duration.html[Duration] link:#duration-note-anchor-quarkus-redis-client_quarkus-redis[icon:question-circle[title=More information about the Duration format]]
@@ -1115,24 +1115,24 @@ endif::add-copy-button-to-env-var[]
11151115
a|`resp2`, `resp3`
11161116
|`+++resp3+++`
11171117

1118-
a| [[quarkus-redis-client_quarkus-redis-redis-client-name-hash-slot-cache-ttl]] [.property-path]##link:#quarkus-redis-client_quarkus-redis-redis-client-name-hash-slot-cache-ttl[`quarkus.redis."redis-client-name".hash-slot-cache-ttl`]##
1118+
a| [[quarkus-redis-client_quarkus-redis-redis-client-name-topology-cache-ttl]] [.property-path]##link:#quarkus-redis-client_quarkus-redis-redis-client-name-topology-cache-ttl[`quarkus.redis."redis-client-name".topology-cache-ttl`]##
11191119
ifdef::add-copy-button-to-config-props[]
1120-
config_property_copy_button:+++quarkus.redis."redis-client-name".hash-slot-cache-ttl+++[]
1120+
config_property_copy_button:+++quarkus.redis."redis-client-name".topology-cache-ttl+++[]
11211121
endif::add-copy-button-to-config-props[]
11221122

11231123

11241124
[.description]
11251125
--
1126-
The TTL of the hash slot cache. A hash slot cache is used by the clustered Redis client to prevent constantly sending `CLUSTER SLOTS` commands to the first statically configured cluster node.
1126+
The TTL of the topology cache. A topology cache is used by a clustered Redis client and a sentinel Redis client to prevent constantly sending topology discovery commands (`CLUSTER SLOTS` or `SENTINEL ...`).
11271127

1128-
This setting is only meaningful in case of a clustered Redis client and has no effect otherwise.
1128+
This setting is only meaningful in case of a clustered Redis client and a sentinel Redis client and has no effect otherwise.
11291129

11301130

11311131
ifdef::add-copy-button-to-env-var[]
1132-
Environment variable: env_var_with_copy_button:+++QUARKUS_REDIS__REDIS_CLIENT_NAME__HASH_SLOT_CACHE_TTL+++[]
1132+
Environment variable: env_var_with_copy_button:+++QUARKUS_REDIS__REDIS_CLIENT_NAME__TOPOLOGY_CACHE_TTL+++[]
11331133
endif::add-copy-button-to-env-var[]
11341134
ifndef::add-copy-button-to-env-var[]
1135-
Environment variable: `+++QUARKUS_REDIS__REDIS_CLIENT_NAME__HASH_SLOT_CACHE_TTL+++`
1135+
Environment variable: `+++QUARKUS_REDIS__REDIS_CLIENT_NAME__TOPOLOGY_CACHE_TTL+++`
11361136
endif::add-copy-button-to-env-var[]
11371137
--
11381138
|link:https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/time/Duration.html[Duration] link:#duration-note-anchor-quarkus-redis-client_quarkus-redis[icon:question-circle[title=More information about the Duration format]]

_generated-doc/latest/config/quarkus-rest-client-config.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1818,7 +1818,7 @@ Environment variable: `+++QUARKUS_REST_CLIENT__CLIENT__DISABLE_DEFAULT_MAPPER+++
18181818
endif::add-copy-button-to-env-var[]
18191819
--
18201820
|boolean
1821-
|`+++${microprofile.rest.client.disable.default.mapper:false}+++`
1821+
|`+++false+++`
18221822

18231823
a| [[quarkus-rest-client-config_quarkus-rest-client-client-logging-scope]] [.property-path]##link:#quarkus-rest-client-config_quarkus-rest-client-client-logging-scope[`quarkus.rest-client."client".logging.scope`]##
18241824
ifdef::add-copy-button-to-config-props[]

_generated-doc/latest/config/quarkus-rest-client-config_quarkus.rest-client.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1818,7 +1818,7 @@ Environment variable: `+++QUARKUS_REST_CLIENT__CLIENT__DISABLE_DEFAULT_MAPPER+++
18181818
endif::add-copy-button-to-env-var[]
18191819
--
18201820
|boolean
1821-
|`+++${microprofile.rest.client.disable.default.mapper:false}+++`
1821+
|`+++false+++`
18221822

18231823
a| [[quarkus-rest-client-config_quarkus-rest-client-client-logging-scope]] [.property-path]##link:#quarkus-rest-client-config_quarkus-rest-client-client-logging-scope[`quarkus.rest-client."client".logging.scope`]##
18241824
ifdef::add-copy-button-to-config-props[]

_generated-doc/latest/config/quarkus-vertx-http_quarkus.http.access-log.adoc

Lines changed: 45 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,9 @@ If this is the string `common`, `combined` or `long` then this will use one of t
6363

6464
- common: `%h %l %u %t "%r" %s %b` - combined: `%h %l %u %t "%r" %s %b "%++{++i,Referer++}++" "%++{++i,User-Agent++}++"` - long: `%r++\++n%++{++ALL_REQUEST_HEADERS++}++`
6565
66-
Otherwise, consult the Quarkus documentation for the full list of variables that can be used.
66+
Otherwise, consult the Quarkus documentation for the full list of variables that can be used. Note that enabling the `%++{++ALL_REQUEST_HEADERS++}++` attribute directly or with a `long` named format introduces a risk of sensitive header values being logged.
67+
68+
HTTP `Authorization` header value is always masked. Use the `masked-headers()` property to mask other sensitive headers.
6769

6870

6971
ifdef::add-copy-button-to-env-var[]
@@ -76,6 +78,48 @@ endif::add-copy-button-to-env-var[]
7678
|string
7779
|`+++common+++`
7880

81+
a| [[quarkus-vertx-http_quarkus-http-access-log_quarkus-http-access-log-masked-headers]] [.property-path]##link:#quarkus-vertx-http_quarkus-http-access-log_quarkus-http-access-log-masked-headers[`quarkus.http.access-log.masked-headers`]##
82+
ifdef::add-copy-button-to-config-props[]
83+
config_property_copy_button:+++quarkus.http.access-log.masked-headers+++[]
84+
endif::add-copy-button-to-config-props[]
85+
86+
87+
[.description]
88+
--
89+
Set of HTTP headers whose values must be masked when the `%++{++ALL_REQUEST_HEADERS++}++` attribute is enabled with the `pattern()` property.
90+
91+
92+
ifdef::add-copy-button-to-env-var[]
93+
Environment variable: env_var_with_copy_button:+++QUARKUS_HTTP_ACCESS_LOG_MASKED_HEADERS+++[]
94+
endif::add-copy-button-to-env-var[]
95+
ifndef::add-copy-button-to-env-var[]
96+
Environment variable: `+++QUARKUS_HTTP_ACCESS_LOG_MASKED_HEADERS+++`
97+
endif::add-copy-button-to-env-var[]
98+
--
99+
|list of string
100+
|
101+
102+
a| [[quarkus-vertx-http_quarkus-http-access-log_quarkus-http-access-log-masked-cookies]] [.property-path]##link:#quarkus-vertx-http_quarkus-http-access-log_quarkus-http-access-log-masked-cookies[`quarkus.http.access-log.masked-cookies`]##
103+
ifdef::add-copy-button-to-config-props[]
104+
config_property_copy_button:+++quarkus.http.access-log.masked-cookies+++[]
105+
endif::add-copy-button-to-config-props[]
106+
107+
108+
[.description]
109+
--
110+
Set of HTTP Cookie headers whose values must be masked when the `%++{++ALL_REQUEST_HEADERS++}++` attribute is enabled with the `pattern()` property.
111+
112+
113+
ifdef::add-copy-button-to-env-var[]
114+
Environment variable: env_var_with_copy_button:+++QUARKUS_HTTP_ACCESS_LOG_MASKED_COOKIES+++[]
115+
endif::add-copy-button-to-env-var[]
116+
ifndef::add-copy-button-to-env-var[]
117+
Environment variable: `+++QUARKUS_HTTP_ACCESS_LOG_MASKED_COOKIES+++`
118+
endif::add-copy-button-to-env-var[]
119+
--
120+
|list of string
121+
|
122+
79123
a| [[quarkus-vertx-http_quarkus-http-access-log_quarkus-http-access-log-log-to-file]] [.property-path]##link:#quarkus-vertx-http_quarkus-http-access-log_quarkus-http-access-log-log-to-file[`quarkus.http.access-log.log-to-file`]##
80124
ifdef::add-copy-button-to-config-props[]
81125
config_property_copy_button:+++quarkus.http.access-log.log-to-file+++[]

0 commit comments

Comments
 (0)