Fix oversight in cmd/generate-config

The -dir argument was ignored for media_api->base_path,
global->jetstream->storage_path and sync_api->search->index_path.
This commit is contained in:
Bernhard Feichtinger 2023-01-19 19:15:22 +01:00
parent 67f5c5bc1e
commit 22b84651c1

View file

@ -54,6 +54,9 @@ func main() {
} else {
cfg.Global.DatabaseOptions.ConnectionString = uri
}
cfg.MediaAPI.BasePath = config.Path(filepath.Join(*dirPath, "media"))
cfg.Global.JetStream.StoragePath = config.Path(*dirPath)
cfg.SyncAPI.Fulltext.IndexPath = config.Path(filepath.Join(*dirPath, "searchindex"))
cfg.Logging = []config.LogrusHook{
{
Type: "file",