Add /etc/akkoma in the config search path

Keeping /etc/pleroma to ease migration from Pleroma.
This commit is contained in:
Norm 2022-07-05 06:01:25 -04:00
parent ebb6142472
commit fd9670e250
1 changed files with 2 additions and 1 deletions

View File

@ -12,7 +12,8 @@ defmodule Pleroma.Config.ReleaseRuntimeProvider do
with_defaults = Config.Reader.merge(config, Pleroma.Config.Holder.release_defaults())
config_path =
opts[:config_path] || System.get_env("PLEROMA_CONFIG_PATH") || "/etc/pleroma/config.exs"
opts[:config_path] || System.get_env("PLEROMA_CONFIG_PATH") || "/etc/akkoma/config.exs" ||
"/etc/pleroma/config.exs"
with_runtime_config =
if File.exists?(config_path) do