pleroma/config/soapbox.exs

19 lines
523 B
Elixir
Raw Normal View History

# Soapbox default config overrides
# This file gets loaded after config.exs
# and before prod.secret.exs
import Config
# Twitter-like block behavior
config :pleroma, :activitypub, blockers_visible: false
2021-05-07 17:02:26 -07:00
# Set Soapbox FE as the default frontend
config :pleroma, :frontends, primary: %{"name" => "soapbox-fe", "ref" => "vendor"}
2021-05-12 13:42:06 -07:00
# Sane default upload filters
config :pleroma, Pleroma.Upload,
filters: [
Pleroma.Upload.Filter.AnalyzeMetadata,
2021-05-12 13:42:06 -07:00
Pleroma.Upload.Filter.Dedupe,
Pleroma.Upload.Filter.Exiftool
]