2017-12-08 09:58:14 +01: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.
|
2019-10-05 19:07:50 +02:00
|
|
|
import Config
|
2017-12-08 09:58:14 +01:00
|
|
|
|
|
|
|
# General application configuration
|
2018-10-11 17:37:39 +02:00
|
|
|
config :mobilizon,
|
2019-10-12 13:16:36 +02:00
|
|
|
ecto_repos: [Mobilizon.Storage.Repo],
|
|
|
|
env: Mix.env()
|
2017-12-08 09:58:14 +01:00
|
|
|
|
2020-01-30 20:27:25 +01:00
|
|
|
config :mobilizon, Mobilizon.Storage.Repo, types: Mobilizon.Storage.PostgresTypes
|
|
|
|
|
2018-10-11 17:37:39 +02:00
|
|
|
config :mobilizon, :instance,
|
2020-01-30 20:27:25 +01:00
|
|
|
name: "My Mobilizon Instance",
|
|
|
|
description: "Change this to a proper description of your instance",
|
|
|
|
hostname: "localhost",
|
|
|
|
registrations_open: false,
|
2020-09-29 09:53:48 +02:00
|
|
|
registration_email_allowlist: [],
|
2020-10-07 15:37:23 +02:00
|
|
|
languages: [],
|
2020-10-09 12:17:33 +02:00
|
|
|
default_language: "en",
|
2020-01-30 20:27:25 +01:00
|
|
|
demo: false,
|
2019-05-22 14:12:11 +02:00
|
|
|
repository: Mix.Project.config()[:source_url],
|
2019-07-30 16:40:59 +02:00
|
|
|
allow_relay: true,
|
2019-12-03 11:29:51 +01:00
|
|
|
federating: true,
|
2019-05-22 14:12:11 +02:00
|
|
|
remote_limit: 100_000,
|
2019-10-18 14:19:05 +02:00
|
|
|
upload_limit: 10_000_000,
|
2019-05-22 14:12:11 +02:00
|
|
|
avatar_upload_limit: 2_000_000,
|
2019-07-23 13:49:22 +02:00
|
|
|
banner_upload_limit: 4_000_000,
|
2020-01-30 20:27:25 +01:00
|
|
|
email_from: "noreply@localhost",
|
|
|
|
email_reply_to: "noreply@localhost"
|
2018-05-17 11:32:23 +02:00
|
|
|
|
2020-09-29 09:53:48 +02:00
|
|
|
config :mobilizon, :groups, enabled: true
|
2020-09-02 15:08:47 +02:00
|
|
|
|
|
|
|
config :mobilizon, :events, creation: true
|
2018-05-17 11:32:23 +02:00
|
|
|
|
2017-12-08 09:58:14 +01:00
|
|
|
# Configures the endpoint
|
2020-01-26 21:36:50 +01:00
|
|
|
config :mobilizon, Mobilizon.Web.Endpoint,
|
2020-01-30 20:27:25 +01:00
|
|
|
http: [
|
|
|
|
transport_options: [socket_opts: [:inet6]]
|
|
|
|
],
|
|
|
|
url: [
|
|
|
|
host: "mobilizon.local",
|
|
|
|
scheme: "https"
|
|
|
|
],
|
2017-12-08 09:58:14 +01:00
|
|
|
secret_key_base: "1yOazsoE0Wqu4kXk3uC5gu3jDbShOimTCzyFL3OjCdBmOXMyHX87Qmf3+Tu9s0iM",
|
2020-01-26 21:36:50 +01:00
|
|
|
render_errors: [view: Mobilizon.Web.ErrorView, accepts: ~w(html json)],
|
2020-02-18 08:57:00 +01:00
|
|
|
pubsub_server: Mobilizon.PubSub,
|
2020-08-27 15:42:09 +02:00
|
|
|
cache_static_manifest: "priv/static/manifest.json",
|
|
|
|
has_reverse_proxy: true
|
2017-12-08 09:58:14 +01:00
|
|
|
|
2020-09-02 15:08:47 +02:00
|
|
|
config :mime, :types, %{
|
|
|
|
"application/activity+json" => ["activity-json"],
|
2020-09-23 09:23:06 +02:00
|
|
|
"application/ld+json" => ["activity-json"],
|
2020-09-02 15:08:47 +02:00
|
|
|
"application/jrd+json" => ["jrd-json"]
|
|
|
|
}
|
|
|
|
|
2019-05-22 14:12:11 +02:00
|
|
|
# Upload configuration
|
2020-01-26 21:36:50 +01:00
|
|
|
config :mobilizon, Mobilizon.Web.Upload,
|
|
|
|
uploader: Mobilizon.Web.Upload.Uploader.Local,
|
2019-10-21 13:42:45 +02:00
|
|
|
filters: [
|
2020-01-26 21:36:50 +01:00
|
|
|
Mobilizon.Web.Upload.Filter.Dedupe,
|
|
|
|
Mobilizon.Web.Upload.Filter.Optimize
|
2019-10-21 13:42:45 +02:00
|
|
|
],
|
2020-10-09 19:29:12 +02:00
|
|
|
allow_list_mime_types: ["image/gif", "image/jpeg", "image/png", "image/webp"],
|
2019-05-22 14:12:11 +02:00
|
|
|
link_name: true,
|
|
|
|
proxy_remote: false,
|
|
|
|
proxy_opts: [
|
|
|
|
redirect_on_failure: false,
|
|
|
|
max_body_length: 25 * 1_048_576,
|
|
|
|
http: [
|
|
|
|
follow_redirect: true,
|
|
|
|
pool: :upload
|
|
|
|
]
|
|
|
|
]
|
|
|
|
|
2020-01-26 21:36:50 +01:00
|
|
|
config :mobilizon, Mobilizon.Web.Upload.Uploader.Local, uploads: "uploads"
|
2019-05-22 14:12:11 +02:00
|
|
|
|
|
|
|
config :mobilizon, :media_proxy,
|
2019-12-03 11:29:51 +01:00
|
|
|
enabled: true,
|
2019-05-22 14:12:11 +02:00
|
|
|
proxy_opts: [
|
|
|
|
redirect_on_failure: false,
|
|
|
|
max_body_length: 25 * 1_048_576,
|
|
|
|
http: [
|
|
|
|
follow_redirect: true,
|
|
|
|
pool: :media
|
|
|
|
]
|
|
|
|
]
|
|
|
|
|
2020-01-30 20:27:25 +01:00
|
|
|
config :mobilizon, Mobilizon.Web.Email.Mailer,
|
|
|
|
adapter: Bamboo.SMTPAdapter,
|
|
|
|
server: "localhost",
|
|
|
|
hostname: "localhost",
|
2020-10-21 10:10:44 +02:00
|
|
|
# usually 25, 465 or 587
|
2020-01-30 20:27:25 +01:00
|
|
|
port: 25,
|
|
|
|
username: nil,
|
|
|
|
password: nil,
|
|
|
|
# can be `:always` or `:never`
|
|
|
|
tls: :if_available,
|
|
|
|
allowed_tls_versions: [:tlsv1, :"tlsv1.1", :"tlsv1.2"],
|
|
|
|
retries: 1,
|
|
|
|
# can be `true`
|
|
|
|
no_mx_lookups: false
|
|
|
|
|
2017-12-08 09:58:14 +01:00
|
|
|
# Configures Elixir's Logger
|
|
|
|
config :logger, :console,
|
|
|
|
format: "$time $metadata[$level] $message\n",
|
|
|
|
metadata: [:request_id]
|
|
|
|
|
2020-01-30 20:27:25 +01:00
|
|
|
config :mobilizon, Mobilizon.Web.Auth.Guardian, issuer: "mobilizon"
|
2018-01-13 23:33:03 +01:00
|
|
|
|
|
|
|
config :guardian, Guardian.DB,
|
2019-09-08 01:49:56 +02:00
|
|
|
repo: Mobilizon.Storage.Repo,
|
2018-07-27 10:45:35 +02:00
|
|
|
# default
|
|
|
|
schema_name: "guardian_tokens",
|
|
|
|
# store all token types if not set
|
2018-11-06 10:30:27 +01:00
|
|
|
# token_types: ["refresh_token"],
|
2018-07-27 10:45:35 +02:00
|
|
|
# default: 60 minutes
|
|
|
|
sweep_interval: 60
|
2018-07-09 14:19:24 +02:00
|
|
|
|
2020-02-18 08:57:00 +01:00
|
|
|
config :elixir, :time_zone_database, Tzdata.TimeZoneDatabase
|
|
|
|
|
2020-06-27 19:12:45 +02:00
|
|
|
config :mobilizon,
|
|
|
|
Mobilizon.Service.Auth.Authenticator,
|
|
|
|
Mobilizon.Service.Auth.MobilizonAuthenticator
|
|
|
|
|
|
|
|
config :ueberauth,
|
|
|
|
Ueberauth,
|
|
|
|
providers: []
|
|
|
|
|
|
|
|
config :mobilizon, :auth, oauth_consumer_strategies: []
|
|
|
|
|
|
|
|
config :mobilizon, :ldap,
|
|
|
|
enabled: System.get_env("LDAP_ENABLED") == "true",
|
|
|
|
host: System.get_env("LDAP_HOST") || "localhost",
|
|
|
|
port: String.to_integer(System.get_env("LDAP_PORT") || "389"),
|
|
|
|
ssl: System.get_env("LDAP_SSL") == "true",
|
|
|
|
sslopts: [],
|
|
|
|
tls: System.get_env("LDAP_TLS") == "true",
|
|
|
|
tlsopts: [],
|
|
|
|
base: System.get_env("LDAP_BASE") || "dc=example,dc=com",
|
|
|
|
uid: System.get_env("LDAP_UID") || "cn",
|
|
|
|
require_bind_for_search: !(System.get_env("LDAP_REQUIRE_BIND_FOR_SEARCH") == "false"),
|
|
|
|
bind_uid: System.get_env("LDAP_BIND_UID"),
|
|
|
|
bind_password: System.get_env("LDAP_BIND_PASSWORD")
|
|
|
|
|
2018-07-09 14:19:24 +02:00
|
|
|
config :geolix,
|
2018-07-27 10:45:35 +02:00
|
|
|
databases: [
|
|
|
|
%{
|
|
|
|
id: :city,
|
|
|
|
adapter: Geolix.Adapter.MMDB2,
|
2020-01-30 20:27:25 +01:00
|
|
|
source: "priv/data/GeoLite2-City.mmdb"
|
2018-07-27 10:45:35 +02:00
|
|
|
}
|
|
|
|
]
|
2018-11-06 10:30:27 +01:00
|
|
|
|
2019-07-26 11:30:28 +02:00
|
|
|
config :auto_linker,
|
|
|
|
opts: [
|
|
|
|
scheme: true,
|
|
|
|
extra: true,
|
|
|
|
# TODO: Set to :no_scheme when it works properly
|
|
|
|
validate_tld: true,
|
|
|
|
class: false,
|
2019-12-03 11:29:51 +01:00
|
|
|
strip_prefix: false,
|
|
|
|
new_window: true,
|
|
|
|
rel: "noopener noreferrer ugc"
|
2019-07-26 11:30:28 +02:00
|
|
|
]
|
|
|
|
|
2020-07-09 17:24:28 +02:00
|
|
|
config :tesla, adapter: Tesla.Adapter.Hackney
|
|
|
|
|
2019-05-02 13:04:21 +02:00
|
|
|
config :phoenix, :format_encoders, json: Jason, "activity-json": Jason
|
2019-07-03 17:30:22 +02:00
|
|
|
config :phoenix, :json_library, Jason
|
2019-03-12 11:52:28 +01:00
|
|
|
|
2019-09-30 18:18:04 +02:00
|
|
|
config :ex_cldr,
|
|
|
|
default_locale: "en",
|
|
|
|
default_backend: Mobilizon.Cldr
|
|
|
|
|
2019-07-30 16:40:59 +02:00
|
|
|
config :http_signatures,
|
2020-01-22 02:14:42 +01:00
|
|
|
adapter: Mobilizon.Federation.HTTPSignatures.Signature
|
2019-07-30 16:40:59 +02:00
|
|
|
|
2020-11-06 11:25:58 +01:00
|
|
|
config :mobilizon, :cldr,
|
|
|
|
locales: [
|
|
|
|
"ar",
|
|
|
|
"be",
|
|
|
|
"ca",
|
|
|
|
"cs",
|
|
|
|
"de",
|
|
|
|
"en",
|
|
|
|
"es",
|
|
|
|
"fi",
|
|
|
|
"fr",
|
|
|
|
"gl",
|
|
|
|
"it",
|
|
|
|
"ja",
|
|
|
|
"nl",
|
|
|
|
"oc",
|
|
|
|
"pl",
|
|
|
|
"pt",
|
|
|
|
"ru",
|
|
|
|
"sv"
|
|
|
|
]
|
|
|
|
|
2020-02-14 17:56:36 +01:00
|
|
|
config :mobilizon, :activitypub,
|
|
|
|
# One day
|
|
|
|
actor_stale_period: 3_600 * 48,
|
|
|
|
actor_key_rotation_delay: 3_600 * 48,
|
|
|
|
sign_object_fetches: true
|
2019-12-03 11:29:51 +01:00
|
|
|
|
2020-01-30 20:27:25 +01:00
|
|
|
config :mobilizon, Mobilizon.Service.Geospatial, service: Mobilizon.Service.Geospatial.Nominatim
|
|
|
|
|
2019-03-12 11:52:28 +01:00
|
|
|
config :mobilizon, Mobilizon.Service.Geospatial.Nominatim,
|
2020-01-30 20:27:25 +01:00
|
|
|
endpoint: "https://nominatim.openstreetmap.org",
|
|
|
|
api_key: nil
|
2019-03-12 11:52:28 +01:00
|
|
|
|
|
|
|
config :mobilizon, Mobilizon.Service.Geospatial.Addok,
|
2020-01-30 20:27:25 +01:00
|
|
|
endpoint: "https://api-adresse.data.gouv.fr"
|
2019-03-12 11:52:28 +01:00
|
|
|
|
2020-01-30 20:27:25 +01:00
|
|
|
config :mobilizon, Mobilizon.Service.Geospatial.Photon, endpoint: "https://photon.komoot.de"
|
2019-03-12 11:52:28 +01:00
|
|
|
|
|
|
|
config :mobilizon, Mobilizon.Service.Geospatial.GoogleMaps,
|
2020-01-30 20:27:25 +01:00
|
|
|
api_key: nil,
|
|
|
|
fetch_place_details: true
|
2019-03-12 11:52:28 +01:00
|
|
|
|
2020-01-30 20:27:25 +01:00
|
|
|
config :mobilizon, Mobilizon.Service.Geospatial.MapQuest, api_key: nil
|
2019-10-05 19:07:50 +02:00
|
|
|
|
2020-01-30 20:27:25 +01:00
|
|
|
config :mobilizon, Mobilizon.Service.Geospatial.Mimirsbrunn, endpoint: nil
|
2019-11-08 19:37:14 +01:00
|
|
|
|
2020-01-30 20:27:25 +01:00
|
|
|
config :mobilizon, Mobilizon.Service.Geospatial.Pelias, endpoint: nil
|
2019-11-19 17:59:04 +01:00
|
|
|
|
2019-11-20 13:49:57 +01:00
|
|
|
config :mobilizon, :maps,
|
|
|
|
tiles: [
|
2020-01-30 20:27:25 +01:00
|
|
|
endpoint: "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",
|
|
|
|
attribution: "© The OpenStreetMap Contributors"
|
2019-11-20 13:49:57 +01:00
|
|
|
]
|
|
|
|
|
2019-12-20 13:04:34 +01:00
|
|
|
config :mobilizon, :anonymous,
|
|
|
|
participation: [
|
|
|
|
allowed: true,
|
|
|
|
validation: %{
|
|
|
|
email: [
|
|
|
|
enabled: true,
|
|
|
|
confirmation_required: true
|
|
|
|
],
|
|
|
|
captcha: [enabled: false]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
event_creation: [
|
|
|
|
allowed: false,
|
|
|
|
validation: %{
|
|
|
|
email: [
|
|
|
|
enabled: true,
|
|
|
|
confirmation_required: true
|
|
|
|
],
|
|
|
|
captcha: [enabled: false]
|
|
|
|
}
|
2020-06-09 14:07:49 +02:00
|
|
|
],
|
|
|
|
reports: [
|
|
|
|
allowed: false
|
2019-12-20 13:04:34 +01:00
|
|
|
]
|
|
|
|
|
2019-11-04 15:10:58 +01:00
|
|
|
config :mobilizon, Oban,
|
|
|
|
repo: Mobilizon.Storage.Repo,
|
2020-08-12 14:34:19 +02:00
|
|
|
log: false,
|
2020-08-12 16:05:34 +02:00
|
|
|
queues: [default: 10, search: 5, mailers: 10, background: 5],
|
|
|
|
crontab: [
|
2020-11-06 11:34:32 +01:00
|
|
|
{"@hourly", Mobilizon.Service.Workers.BuildSiteMap, queue: :background},
|
|
|
|
{"17 * * * *", Mobilizon.Service.Workers.RefreshGroups, queue: :background}
|
2020-08-12 16:05:34 +02:00
|
|
|
]
|
2020-02-18 08:57:00 +01:00
|
|
|
|
|
|
|
config :mobilizon, :rich_media,
|
|
|
|
parsers: [
|
|
|
|
Mobilizon.Service.RichMedia.Parsers.OEmbed,
|
|
|
|
Mobilizon.Service.RichMedia.Parsers.OGP,
|
|
|
|
Mobilizon.Service.RichMedia.Parsers.TwitterCard,
|
|
|
|
Mobilizon.Service.RichMedia.Parsers.Fallback
|
|
|
|
]
|
|
|
|
|
|
|
|
config :mobilizon, Mobilizon.Service.ResourceProviders,
|
|
|
|
types: [],
|
|
|
|
providers: %{}
|
|
|
|
|
|
|
|
config :mobilizon, :external_resource_providers, %{
|
|
|
|
"https://drive.google.com/" => :google_drive,
|
|
|
|
"https://docs.google.com/document/" => :google_docs,
|
|
|
|
"https://docs.google.com/presentation/" => :google_presentation,
|
|
|
|
"https://docs.google.com/spreadsheets/" => :google_spreadsheets
|
|
|
|
}
|
2019-11-04 15:10:58 +01:00
|
|
|
|
2019-10-05 19:07:50 +02:00
|
|
|
# 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"
|