diff options
Diffstat (limited to 'config/config.exs')
-rw-r--r-- | config/config.exs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/config/config.exs b/config/config.exs index 1dc196a6b..4b91a58b7 100644 --- a/config/config.exs +++ b/config/config.exs @@ -647,6 +647,16 @@ config :pleroma, Pleroma.Plugs.RemoteIp, enabled: true config :pleroma, :static_fe, enabled: false +# Example of frontend configuration +# This example will make us serve the primary frontend from the +# frontends directory within your `:pleroma, :instance, static_dir`. +# e.g., instance/static/frontends/pleroma/develop/ +# +# With no frontend configuration, the bundled files from the `static` directory will +# be used. +# +# config :pleroma, :frontends, primary: %{"name" => "pleroma", "ref" => "develop"} + config :pleroma, :web_cache_ttl, activity_pub: nil, activity_pub_question: 30_000 |