akkoma/config/config.exs

283 lines
7.0 KiB
Elixir
Raw Normal View History

2017-03-17 16:09:58 +00:00
# This file is responsible for configuring your application
# and its dependencies with the aid of the Mix.Config module.
#
# This configuration file is loaded before any dependency and
# is restricted to this project.
use Mix.Config
# General application configuration
2018-03-30 13:01:53 +00:00
config :pleroma, ecto_repos: [Pleroma.Repo]
2017-03-17 16:09:58 +00:00
2018-03-30 13:01:53 +00:00
config :pleroma, Pleroma.Repo, types: Pleroma.PostgresTypes
config :pleroma, Pleroma.Captcha,
2018-12-14 23:00:00 +00:00
enabled: false,
seconds_valid: 60,
method: Pleroma.Captcha.Kocaptcha
config :pleroma, Pleroma.Captcha.Kocaptcha, endpoint: "https://captcha.kotobank.ch"
2018-11-29 20:11:45 +00:00
# Upload configuration
2018-06-26 20:49:57 +00:00
config :pleroma, Pleroma.Upload,
2018-08-28 01:45:53 +00:00
uploader: Pleroma.Uploaders.Local,
2018-11-29 20:11:45 +00:00
filters: [],
2018-11-23 16:40:45 +00:00
proxy_remote: false,
2018-11-29 20:11:45 +00:00
proxy_opts: []
2018-11-23 16:40:45 +00:00
config :pleroma, Pleroma.Uploaders.Local, uploads: "uploads"
2018-08-28 01:20:54 +00:00
config :pleroma, Pleroma.Uploaders.S3,
bucket: nil,
2018-11-23 16:40:45 +00:00
public_endpoint: "https://s3.amazonaws.com"
2017-03-28 23:39:01 +00:00
2018-11-17 09:14:42 +00:00
config :pleroma, Pleroma.Uploaders.MDII,
2018-11-16 11:41:12 +00:00
cgi: "https://mdii.sakura.ne.jp/mdii-post.cgi",
files: "https://mdii.sakura.ne.jp"
2018-11-15 05:19:10 +00:00
config :pleroma, :emoji, shortcode_globs: ["/emoji/custom/**/*.png"]
config :pleroma, :uri_schemes,
valid_schemes: [
"https",
"http",
"dat",
"dweb",
"gopher",
"ipfs",
"ipns",
"irc",
"ircs",
"magnet",
"mailto",
"mumble",
"ssb",
"xmpp"
]
2019-01-02 10:39:11 +00:00
websocket_config = [
path: "/websocket",
serializer: [
{Phoenix.Socket.V1.JSONSerializer, "~> 1.0.0"},
{Phoenix.Socket.V2.JSONSerializer, "~> 2.0.0"}
],
timeout: 60_000,
transport_log: false,
compress: false
]
2017-03-17 16:09:58 +00:00
# Configures the endpoint
config :pleroma, Pleroma.Web.Endpoint,
url: [host: "localhost"],
2018-12-17 13:39:59 +00:00
http: [
dispatch: [
{:_,
[
{"/api/v1/streaming", Elixir.Pleroma.Web.MastodonAPI.WebsocketHandler, []},
2019-01-02 10:39:11 +00:00
{"/socket/websocket", Phoenix.Endpoint.CowboyWebSocket,
{nil, {Pleroma.Web.Endpoint, Pleroma.Web.UserSocket, websocket_config}}},
2018-12-17 13:39:59 +00:00
{:_, Plug.Adapters.Cowboy.Handler, {Pleroma.Web.Endpoint, []}}
]}
]
],
2017-03-29 00:05:51 +00:00
protocol: "https",
2017-03-17 16:09:58 +00:00
secret_key_base: "aK4Abxf29xU9TTDKre9coZPUgevcVCFQJe/5xP/7Lt4BEif6idBIbjupVbOrbKxl",
2018-11-16 20:35:08 +00:00
signing_salt: "CqaoopA2",
2017-03-17 16:09:58 +00:00
render_errors: [view: Pleroma.Web.ErrorView, accepts: ~w(json)],
2018-08-27 22:40:58 +00:00
pubsub: [name: Pleroma.PubSub, adapter: Phoenix.PubSub.PG2],
secure_cookie_flag: true
2017-03-17 16:09:58 +00:00
# Configures Elixir's Logger
config :logger, :console,
format: "$time $metadata[$level] $message\n",
metadata: [:request_id]
2019-01-02 22:07:48 +00:00
config :logger, :ex_syslogger,
level: :debug,
ident: "Pleroma",
format: "$date $time $metadata[$level] $message",
metadata: [:request_id]
2017-04-17 11:44:41 +00:00
config :mime, :types, %{
"application/xml" => ["xml"],
2017-12-11 09:37:22 +00:00
"application/xrd+xml" => ["xrd+xml"],
"application/jrd+json" => ["jrd+json"],
2018-04-01 12:58:01 +00:00
"application/activity+json" => ["activity+json"],
"application/ld+json" => ["activity+json"]
2017-04-17 11:44:41 +00:00
}
2017-04-28 13:45:10 +00:00
config :pleroma, :websub, Pleroma.Web.Websub
config :pleroma, :ostatus, Pleroma.Web.OStatus
config :pleroma, :httpoison, Pleroma.HTTP
config :tesla, adapter: Tesla.Adapter.Hackney
2017-12-30 18:02:51 +00:00
# Configures http settings, upstream proxy etc.
2018-03-30 13:01:53 +00:00
config :pleroma, :http, proxy_url: nil
2017-09-15 08:26:28 +00:00
config :pleroma, :instance,
name: "Pleroma",
email: "example@example.com",
description: "A Pleroma instance, an alternative fediverse server",
limit: 5_000,
2018-12-28 18:57:50 +00:00
remote_limit: 100_000,
upload_limit: 16_000_000,
avatar_upload_limit: 2_000_000,
background_upload_limit: 4_000_000,
banner_upload_limit: 4_000_000,
2018-03-05 08:26:24 +00:00
registrations_open: true,
federating: true,
2018-08-06 06:18:15 +00:00
allow_relay: true,
rewrite_policy: Pleroma.Web.ActivityPub.MRF.NoOpPolicy,
public: true,
quarantined_instances: [],
managed_config: true,
static_dir: "instance/static/",
allowed_post_formats: [
"text/plain",
"text/html",
"text/markdown"
],
2018-10-25 16:58:46 +00:00
finmoji_enabled: true,
mrf_transparency: true,
autofollowed_nicknames: [],
2019-01-17 15:50:34 +00:00
max_pinned_statuses: 1,
no_attachment_links: false
2017-09-15 08:26:28 +00:00
config :pleroma, :markup,
# XXX - unfortunately, inline images must be enabled by default right now, because
# of custom emoji. Issue #275 discusses defanging that somehow.
allow_inline_images: true,
allow_headings: false,
allow_tables: false,
allow_fonts: false,
scrub_policy: [
Pleroma.HTML.Transform.MediaProxy,
Pleroma.HTML.Scrubber.Default
]
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,
formatting_options_enabled: false,
collapse_message_with_subject: false,
hide_post_stats: false,
hide_user_stats: false,
scope_copy: true,
subject_line_behavior: "email",
always_show_subject_input: true
config :pleroma, :activitypub,
accept_blocks: true,
unfollow_blocked: true,
outgoing_blocks: true,
follow_handshake_timeout: 500
2018-06-09 04:28:11 +00:00
config :pleroma, :user, deny_follow_blocked: true
config :pleroma, :mrf_normalize_markup, scrub_policy: Pleroma.HTML.Scrubber.Default
config :pleroma, :mrf_rejectnonpublic,
allow_followersonly: false,
allow_direct: false
2018-12-23 10:14:29 +00:00
config :pleroma, :mrf_hellthread, threshold: 10
2018-12-22 22:18:31 +00:00
config :pleroma, :mrf_simple,
media_removal: [],
media_nsfw: [],
federated_timeline_removal: [],
reject: [],
accept: []
config :pleroma, :media_proxy, enabled: false
2018-03-30 13:01:53 +00:00
config :pleroma, :chat, enabled: true
config :ecto, json_library: Jason
2018-03-30 13:01:53 +00:00
config :phoenix, :format_encoders, json: Jason
2018-03-31 15:51:33 +00:00
config :pleroma, :gopher,
enabled: false,
ip: {0, 0, 0, 0},
port: 9999
2018-07-18 00:58:59 +00:00
config :pleroma, :suggestions,
enabled: false,
third_party_engine:
2018-07-18 04:36:20 +00:00
"http://vinayaka.distsn.org/cgi-bin/vinayaka-user-match-suggestions-api.cgi?{{host}}+{{user}}",
2018-08-02 09:03:35 +00:00
timeout: 300_000,
2018-09-09 04:57:23 +00:00
limit: 23,
2018-08-02 09:03:35 +00:00
web: "https://vinayaka.distsn.org/?{{host}}+{{user}}"
2018-07-14 02:41:09 +00:00
2018-11-12 15:08:02 +00:00
config :pleroma, :http_security,
enabled: true,
sts: false,
sts_max_age: 31_536_000,
ct_max_age: 2_592_000,
referrer_policy: "same-origin"
2018-11-11 05:40:55 +00:00
config :cors_plug,
max_age: 86_400,
methods: ["POST", "PUT", "DELETE", "GET", "PATCH", "OPTIONS"],
expose: [
"Link",
"X-RateLimit-Reset",
"X-RateLimit-Limit",
"X-RateLimit-Remaining",
"X-Request-Id",
"Idempotency-Key"
],
credentials: true,
headers: ["Authorization", "Content-Type", "Idempotency-Key"]
config :pleroma, Pleroma.User,
restricted_nicknames: [
2019-01-10 00:06:03 +00:00
".well-known",
2018-12-26 13:16:41 +00:00
"~",
2019-01-10 00:06:03 +00:00
"about",
"activities",
"api",
2019-01-10 00:06:03 +00:00
"auth",
"dev",
"friend-requests",
"inbox",
"internal",
"main",
"media",
"nodeinfo",
"notice",
"oauth",
2019-01-10 00:06:03 +00:00
"objects",
"ostatus_subscribe",
"pleroma",
"proxy",
"push",
2019-01-10 00:06:03 +00:00
"registration",
"relay",
2019-01-10 00:06:03 +00:00
"settings",
"status",
"tag",
"user-search",
"users",
"web"
]
2019-01-01 13:46:55 +00:00
config :pleroma, Pleroma.Web.Federator, max_jobs: 50
config :pleroma, Pleroma.Web.Federator.RetryQueue,
enabled: false,
max_jobs: 20,
initial_timeout: 30,
max_retries: 5
2017-03-17 16:09:58 +00:00
# Import environment specific config. This must remain at the bottom
# of this file so it overrides the configuration defined above.
2018-03-30 13:01:53 +00:00
import_config "#{Mix.env()}.exs"