X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=config%2Fdev.exs;h=f77bb99765f4014bb51db91b3fc8fb318ed8f3bd;hb=ea2698beb75074e6c94acf0c66bcdbdb47f59acd;hp=83326e6f261a6c805b04690ada767366197d3daf;hpb=44dc6948823f5e26ede427d3348fef72129f3f4d;p=akkoma diff --git a/config/dev.exs b/config/dev.exs index 83326e6f2..f77bb9976 100644 --- a/config/dev.exs +++ b/config/dev.exs @@ -7,12 +7,19 @@ 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", + secure_cookie_flag: false, debug_errors: true, code_reloader: true, check_origin: false, - watchers: [] + watchers: [], + secure_cookie_flag: false + +config :pleroma, Pleroma.Mailer, adapter: Swoosh.Adapters.Local # ## SSL Support # @@ -46,8 +53,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