mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
feat: better SQLite3 configuration, to avoid DB contention
This commit is contained in:
parent
faa2a978c0
commit
1d886156d5
2 changed files with 2 additions and 1 deletions
|
@ -83,7 +83,7 @@ func LoadFromFile(confFile string, skipFlags ...bool) {
|
|||
os.Exit(2)
|
||||
}
|
||||
if Server.DbPath == "" {
|
||||
Server.DbPath = filepath.Join(Server.DataFolder, "navidrome.db")
|
||||
Server.DbPath = filepath.Join(Server.DataFolder, consts.DefaultDbPath)
|
||||
}
|
||||
if os.Getenv("PORT") != "" {
|
||||
Server.Port = os.Getenv("PORT")
|
||||
|
|
|
@ -6,6 +6,7 @@ const (
|
|||
AppName = "navidrome"
|
||||
|
||||
LocalConfigFile = "./navidrome.toml"
|
||||
DefaultDbPath = "navidrome.db?cache=shared&_busy_timeout=15000&_journal_mode=WAL"
|
||||
InitialSetupFlagKey = "InitialSetup"
|
||||
|
||||
JWTSecretKey = "JWTSecret"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue