X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=config%2Fdev.exs;h=7e1e3b4beb2a5add28c054f79f71c3ee328708ae;hb=32018a4ee0fab43fc0982e6428d3fb93e5ac3c47;hp=6adde84a27205b533947347b08b0f5b02a73ce48;hpb=e7dc39e40cde5599f2e1e0dd1715670fd1e76720;p=akkoma diff --git a/config/dev.exs b/config/dev.exs index 6adde84a2..7e1e3b4be 100644 --- a/config/dev.exs +++ b/config/dev.exs @@ -7,12 +7,18 @@ 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, - watchers: [] + watchers: [], + secure_cookie_flag: false + +config :pleroma, Pleroma.Emails.Mailer, adapter: Swoosh.Adapters.Local # ## SSL Support # @@ -45,3 +51,14 @@ config :pleroma, Pleroma.Repo, database: "pleroma_dev", hostname: "localhost", pool_size: 10 + +if File.exists?("./config/dev.secret.exs") do + import_config "dev.secret.exs" +else + IO.puts( + "!!! RUNNING IN LOCALHOST DEV MODE! !!!\nFEDERATION WON'T WORK UNTIL YOU CONFIGURE A dev.secret.exs" + ) +end + +if File.exists?("./config/dev.exported_from_db.secret.exs"), + do: import_config("dev.exported_from_db.secret.exs")