Skip to content

Commit

Permalink
feat: addded quotes in keycloak configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
NithinKuruba committed Apr 3, 2024
1 parent ae51b59 commit 45b65fc
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
14 changes: 7 additions & 7 deletions docker/keycloak/configuration/keycloak.conf
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# theme
spi-theme-static-max-age=2592000
spi-theme-cache-themes=true
spi-theme-cache-templates=true
spi-theme-static-max-age="2592000"
spi-theme-cache-themes="true"
spi-theme-cache-templates="true"

#logging
log="console,file"
log-console-color=false
log-file=/var/log/eap/${jboss.node.name}.log
log-console-color="false"
log-file="/var/log/eap/${jboss.node.name}.log"
# root-logger-level:INFO
log-level="INFO,com.arjuna:warn,io.jaegertracing.Configuration:warn,org.keycloak.events:debug,sun.rmi:warn"
log-console-output=json
log-file-output=json
log-console-output="json"
log-file-output="json"
18 changes: 9 additions & 9 deletions docker/keycloak/configuration/quarkus.properties
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
quarkus.log.console.json.exception-output-type=formatted
quarkus.log.console.json.key-overrides=timestamp=@timestamp
quarkus.log.console.json.additional-field."@version".value=1
quarkus.log.file.json.exception-output-type=formatted
quarkus.log.file.json.key-overrides=timestamp=@timestamp
quarkus.log.file.json.additional-field."@version".value=1
quarkus.log.file.rotation.file-suffix=.yyyy-MM-dd
quarkus.log.console.json.exception-output-type="formatted"
quarkus.log.console.json.key-overrides="timestamp=@timestamp"
quarkus.log.console.json.additional-field."@version".value="1"
quarkus.log.file.json.exception-output-type="formatted"
quarkus.log.file.json.key-overrides="timestamp=@timestamp"
quarkus.log.file.json.additional-field."@version".value="1"
quarkus.log.file.rotation.file-suffix=".yyyy-MM-dd"
# Optional: Disable rotation by size (adjust value as needed)
quarkus.log.handler.file.rotation.max-file-size=10000M
quarkus.log.handler.file.rotation.max-backup-index=100
quarkus.log.handler.file.rotation.max-file-size="10000M"
quarkus.log.handler.file.rotation.max-backup-index="100"

0 comments on commit 45b65fc

Please sign in to comment.