Move static_fe config to its own section instead of in :instance.
authorPhil Hagelberg <phil@hagelb.org>
Fri, 8 Nov 2019 03:31:28 +0000 (19:31 -0800)
committerPhil Hagelberg <phil@hagelb.org>
Sun, 10 Nov 2019 02:08:45 +0000 (18:08 -0800)
config/config.exs
lib/pleroma/plugs/static_fe_plug.ex

index 787809b271dc82435e14c167d89b468e23e0a577..685c18380a40a7141414b48abf03ea990427dad4 100644 (file)
@@ -599,6 +599,8 @@ config :pleroma, Pleroma.ActivityExpiration, enabled: true
 
 config :pleroma, Pleroma.Plugs.RemoteIp, enabled: false
 
+config :pleroma, :static_fe, enabled: false
+
 config :pleroma, :web_cache_ttl,
   activity_pub: nil,
   activity_pub_question: 30_000
index 2af45e52a61071c8a39aa2638916e27db1b1aa10..b3fb3c582037c1cc7d393edf299dc44a964c1bf3 100644 (file)
@@ -18,7 +18,7 @@ defmodule Pleroma.Plugs.StaticFEPlug do
     end
   end
 
-  defp enabled?, do: Pleroma.Config.get([:instance, :static_fe], false)
+  defp enabled?, do: Pleroma.Config.get([:static_fe, :enabled], false)
 
   defp accepts_html?(conn) do
     conn |> get_req_header("accept") |> List.first() |> String.contains?("text/html")