26 lines
817 B
YAML
26 lines
817 B
YAML
logging:
|
|
level:
|
|
root: INFO
|
|
com.jambotronGroup.jambotron: DEBUG
|
|
org.springframework: WARN
|
|
com.example.service.DockerService: DEBUG
|
|
pattern:
|
|
console: "%d{yyyy-MM-dd HH:mm:ss} %-5level - %msg%n"
|
|
file: "%d{yyyy-MM-dd HH:mm:ss} [%thread] %-5level %logger{36} - %msg%n"
|
|
file:
|
|
name: logs/application.log
|
|
max-size: 10MB
|
|
max-history: 30
|
|
|
|
server:
|
|
ssl:
|
|
enabled: ${SSL_ENABLED:false} # Default to true if SSL_ENABLED is not set
|
|
certificate: ${FULLCHAINPEM:""} # Default to empty string if FULLCHAINPEM is not set
|
|
certificate-private-key: ${PRIVKEYPEM:""} # Default to empty string if PRIVKEYPEM is not set
|
|
# port: ${SERVER_PORT:443} # Default to 443 if SERVER_PORT is not set
|
|
|
|
docker:
|
|
socket-path: /var/run/docker.sock
|
|
enable-security: true
|
|
command-timeout: 30000
|