Merge branch 'nil-bio-emojis' into 'develop'
[akkoma] / config / dev.exs
index 78f543720b7290204067d89c28a9c5e6912efa48..7b06ad67ece9541d79fd20c28f8c2e68cf5f984a 100644 (file)
@@ -7,7 +7,11 @@ use Mix.Config
 # watchers to your application. For example, we use it
 # with brunch.io to recompile .js and .css sources.
 config :pleroma, Pleroma.Web.Endpoint,
-  http: [port: 4000],
+  http: [
+    port: 4000,
+    protocol_options: [max_request_line_length: 8192, max_header_value_length: 8192]
+  ],
+  protocol: "http",
   debug_errors: true,
   code_reloader: true,
   check_origin: false,
@@ -44,3 +48,12 @@ config :pleroma, Pleroma.Repo,
   database: "pleroma_dev",
   hostname: "localhost",
   pool_size: 10
+
+try do
+  import_config "dev.secret.exs"
+rescue
+  _ ->
+    IO.puts(
+      "!!! RUNNING IN LOCALHOST DEV MODE! !!!\nFEDERATION WON'T WORK UNTIL YOU CONFIGURE A dev.secret.exs"
+    )
+end