mirror of
https://github.com/gotson/komga.git
synced 2025-12-21 16:03:03 +01:00
fix: properly expand home dir in config
using Spring Boot's placeholder replacement syntax changed the default log file to ~/.komga/komga.log closes #195, closes #203
This commit is contained in:
parent
94a1f706c8
commit
5d86d3ea0b
1 changed files with 2 additions and 2 deletions
|
|
@ -3,7 +3,7 @@ application.version: ${version}
|
|||
logging:
|
||||
file:
|
||||
max-history: 10
|
||||
name: komga.log
|
||||
name: \${user.home}/.komga/komga.log
|
||||
level:
|
||||
org.apache.activemq.audit.message: WARN
|
||||
|
||||
|
|
@ -35,7 +35,7 @@ spring:
|
|||
artemis:
|
||||
embedded:
|
||||
persistent: true
|
||||
data-directory: ~/.komga/artemis
|
||||
data-directory: \${user.home}/.komga/artemis
|
||||
|
||||
server:
|
||||
servlet.session.timeout: 7d
|
||||
|
|
|
|||
Loading…
Reference in a new issue