35 lines
630 B
YAML
35 lines
630 B
YAML
server:
|
|
port: 8080
|
|
|
|
spring:
|
|
application:
|
|
name: log-hunter
|
|
|
|
datasource:
|
|
url: jdbc:sqlite:./data/loghunter.db
|
|
driver-class-name: org.sqlite.JDBC
|
|
|
|
jpa:
|
|
database-platform: org.hibernate.community.dialect.SQLiteDialect
|
|
hibernate:
|
|
ddl-auto: update
|
|
show-sql: false
|
|
properties:
|
|
hibernate:
|
|
format_sql: true
|
|
|
|
# 정적 리소스 캐시 비활성화
|
|
web:
|
|
resources:
|
|
cache:
|
|
cachecontrol:
|
|
no-cache: true
|
|
no-store: true
|
|
|
|
# 앱 설정
|
|
app:
|
|
crypto:
|
|
key: ${LOGHUNTER_CRYPTO_KEY:LogHunterDefaultKey32Bytes!!}
|
|
export:
|
|
path: ./exports
|