X-Git-Url: https://git.squeep.com/?a=blobdiff_plain;f=config%2Fconfig.exs;h=ed718c3d3cd6f583a8a7d1a55f53a474abf2f5c5;hb=b564c23d925ca43c00364541b042f856063d479e;hp=5e57af87b4927a8549e3723435590b59c8aa29cb;hpb=1ea4a18ad859600841860cdd1a981da868aa18a0;p=akkoma diff --git a/config/config.exs b/config/config.exs index 5e57af87b..ed718c3d3 100644 --- a/config/config.exs +++ b/config/config.exs @@ -10,7 +10,21 @@ config :pleroma, ecto_repos: [Pleroma.Repo] config :pleroma, Pleroma.Repo, types: Pleroma.PostgresTypes -config :pleroma, Pleroma.Upload, uploads: "uploads" +config :pleroma, Pleroma.Upload, + uploader: Pleroma.Uploaders.Local, + strip_exif: false + +config :pleroma, Pleroma.Uploaders.Local, + uploads: "uploads", + uploads_url: "{{base_url}}/media/{{file}}" + +config :pleroma, Pleroma.Uploaders.S3, + bucket: nil, + public_endpoint: "https://s3.amazonaws.com" + +config :pleroma, :emoji, shortcode_globs: ["/emoji/custom/**/*.png"] + +config :pleroma, :uri_schemes, additionnal_schemes: [] # Configures the endpoint config :pleroma, Pleroma.Web.Endpoint, @@ -18,7 +32,8 @@ config :pleroma, Pleroma.Web.Endpoint, protocol: "https", secret_key_base: "aK4Abxf29xU9TTDKre9coZPUgevcVCFQJe/5xP/7Lt4BEif6idBIbjupVbOrbKxl", render_errors: [view: Pleroma.Web.ErrorView, accepts: ~w(json)], - pubsub: [name: Pleroma.PubSub, adapter: Phoenix.PubSub.PG2] + pubsub: [name: Pleroma.PubSub, adapter: Phoenix.PubSub.PG2], + secure_cookie_flag: true # Configures Elixir's Logger config :logger, :console, @@ -26,6 +41,7 @@ config :logger, :console, metadata: [:request_id] config :mime, :types, %{ + "application/xml" => ["xml"], "application/xrd+xml" => ["xrd+xml"], "application/activity+json" => ["activity+json"], "application/ld+json" => ["activity+json"] @@ -49,15 +65,35 @@ config :pleroma, :instance, version: version, name: "Pleroma", email: "example@example.com", + description: "A Pleroma instance, an alternative fediverse server", limit: 5000, upload_limit: 16_000_000, registrations_open: true, federating: true, + allow_relay: true, rewrite_policy: Pleroma.Web.ActivityPub.MRF.NoOpPolicy, public: true, - quarantined_instances: [] - -config :pleroma, :activitypub, accept_blocks: true + quarantined_instances: [], + managed_config: true + +config :pleroma, :fe, + theme: "pleroma-dark", + logo: "/static/logo.png", + logo_mask: true, + logo_margin: "0.1em", + background: "/static/aurora_borealis.jpg", + redirect_root_no_login: "/main/all", + redirect_root_login: "/main/friends", + show_instance_panel: true, + scope_options_enabled: false, + collapse_message_with_subject: false + +config :pleroma, :activitypub, + accept_blocks: true, + unfollow_blocked: true, + outgoing_blocks: true + +config :pleroma, :user, deny_follow_blocked: true config :pleroma, :mrf_rejectnonpublic, allow_followersonly: false, @@ -67,7 +103,8 @@ config :pleroma, :mrf_simple, media_removal: [], media_nsfw: [], federated_timeline_removal: [], - reject: [] + reject: [], + accept: [] config :pleroma, :media_proxy, enabled: false, @@ -86,6 +123,14 @@ config :pleroma, :gopher, ip: {0, 0, 0, 0}, port: 9999 +config :pleroma, :suggestions, + enabled: false, + third_party_engine: + "http://vinayaka.distsn.org/cgi-bin/vinayaka-user-match-suggestions-api.cgi?{{host}}+{{user}}", + timeout: 300_000, + limit: 23, + web: "https://vinayaka.distsn.org/?{{host}}+{{user}}" + # Import environment specific config. This must remain at the bottom # of this file so it overrides the configuration defined above. import_config "#{Mix.env()}.exs"