mirror of
https://github.com/oddlama/nix-config.git
synced 2025-10-10 23:00:39 +02:00
fix: fix missing pico migrations and duplicate slash in nginx rewrite
This commit is contained in:
parent
9422389c9c
commit
4af7e6479c
2 changed files with 31 additions and 5 deletions
|
@ -230,9 +230,9 @@ in
|
|||
else if cfg.settings.DB_CONNECTION == "mysql" then
|
||||
"firefly-pico"
|
||||
else
|
||||
cfg.dataDir + "storage/database/database.sqlite";
|
||||
cfg.dataDir + "/storage/database/database.sqlite";
|
||||
defaultText = ''
|
||||
`cfg.dataDir + "storage/database/database.sqlite` if DB_CONNECTION is "sqlite", `firefly-pico` if "mysql" or "pgsql"
|
||||
`cfg.dataDir + "/storage/database/database.sqlite` if DB_CONNECTION is "sqlite", `firefly-pico` if "mysql" or "pgsql"
|
||||
'';
|
||||
description = ''
|
||||
The absolute path or name of your firefly-pico database.
|
||||
|
@ -372,7 +372,6 @@ in
|
|||
[
|
||||
"${cfg.dataDir}/storage"
|
||||
"${cfg.dataDir}/storage/app"
|
||||
"${cfg.dataDir}/storage/database"
|
||||
"${cfg.dataDir}/storage/framework"
|
||||
"${cfg.dataDir}/storage/framework/cache"
|
||||
"${cfg.dataDir}/storage/framework/sessions"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue