X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=config%2Fdev.exs;h=166be721aade416f6d73c07d334c2ed517541319;hb=114b95cee20c9bb4922627e5397a70d60e905fa6;hp=83326e6f261a6c805b04690ada767366197d3daf;hpb=30e9b22f96f2bf1cd895e993190f40afba159bb6;p=akkoma diff --git a/config/dev.exs b/config/dev.exs index 83326e6f2..166be721a 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, @@ -46,8 +49,10 @@ config :pleroma, Pleroma.Repo, hostname: "localhost", pool_size: 10 -try do +if File.exists?("./config/dev.secret.exs") 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") +else + IO.puts( + "!!! RUNNING IN LOCALHOST DEV MODE! !!!\nFEDERATION WON'T WORK UNTIL YOU CONFIGURE A dev.secret.exs" + ) end