Skip to content

Commit

Permalink
Add compress-media-types for build time config
Browse files Browse the repository at this point in the history
  And remove quarkus.log.min-level to use default value because this is
  a build time config
  • Loading branch information
ligangty committed Jun 24, 2024
1 parent 99ee75c commit f59c7aa
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/main/resources/application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ quarkus:
port: 8080
read-timeout: 30m
enable-compression: true
compress-media-types:
- text/html
- text/plain
- text/xml
- text/css
- text/javascript
- application/javascript
- application/json
limits:
max-body-size: 1000M
auth:
Expand Down Expand Up @@ -56,7 +64,7 @@ quarkus:
enabled: true
log:
level: INFO
min-level: TRACE
# min-level: DEBUG # Comment because this is build time config, let's use default value
category:
"org.jboss":
level: WARN
Expand Down

0 comments on commit f59c7aa

Please sign in to comment.