Skip to content

Commit 10b08a7

Browse files
committed
Add compress-media-types for build time config
And remove quarkus.log.min-level to use default value because this is a build time config
1 parent 4ba8898 commit 10b08a7

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

src/main/resources/application.yaml

+9-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ quarkus:
77
port: 8080
88
read-timeout: 30m
99
enable-compression: true
10+
compress-media-types:
11+
- text/html
12+
- text/plain
13+
- text/xml
14+
- text/css
15+
- text/javascript
16+
- application/javascript
17+
- application/json
1018
limits:
1119
max-body-size: 1000M
1220
auth:
@@ -56,7 +64,7 @@ quarkus:
5664
enabled: true
5765
log:
5866
level: INFO
59-
min-level: TRACE
67+
# min-level: DEBUG # Comment because this is build time config, let's use default value
6068
category:
6169
"org.jboss":
6270
level: WARN

0 commit comments

Comments
 (0)