X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=config%2Freleases.exs;h=19636765f51b6381ff6e18581c50fbd204624c29;hb=7d8f4d0d5077bdd9182d726cb5473d1465aaeab9;hp=f8494dd345c47296a258463e02baaced86c3efbb;hpb=822a9f28d08af9da69a8e0f72cc6511252f25ddd;p=akkoma diff --git a/config/releases.exs b/config/releases.exs index f8494dd34..19636765f 100644 --- a/config/releases.exs +++ b/config/releases.exs @@ -1,7 +1,13 @@ import Config +config :pleroma, :instance, static_dir: "/var/lib/pleroma/static" +config :pleroma, Pleroma.Uploaders.Local, uploads: "/var/lib/pleroma/uploads" +config :pleroma, :modules, runtime_dir: "/var/lib/pleroma/modules" + config_path = System.get_env("PLEROMA_CONFIG_PATH") || "/etc/pleroma/config.exs" +config :pleroma, release: true, config_path: config_path + if File.exists?(config_path) do import_config config_path else @@ -14,3 +20,12 @@ else IO.puts(warning) end + +exported_config = + config_path + |> Path.dirname() + |> Path.join("prod.exported_from_db.secret.exs") + +if File.exists?(exported_config) do + import_config exported_config +end