X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=config%2Fdev.exs;h=7b06ad67ece9541d79fd20c28f8c2e68cf5f984a;hb=634c0c52a1281e1576d028c74ee77fd05abe09de;hp=83326e6f261a6c805b04690ada767366197d3daf;hpb=44dc6948823f5e26ede427d3348fef72129f3f4d;p=akkoma diff --git a/config/dev.exs b/config/dev.exs index 83326e6f2..7b06ad67e 100644 --- a/config/dev.exs +++ b/config/dev.exs @@ -7,7 +7,10 @@ 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, @@ -49,5 +52,8 @@ config :pleroma, Pleroma.Repo, 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") + _ -> + IO.puts( + "!!! RUNNING IN LOCALHOST DEV MODE! !!!\nFEDERATION WON'T WORK UNTIL YOU CONFIGURE A dev.secret.exs" + ) end