angristan/docker-pleroma

About configuration

开放

#27 创建于 2021年5月9日

 (1 条评论) (0 个反应) (0 位负责人)Elixir (82 个派生)github user discovery
help wanted

仓库指标

星标
 (376 个星标)
PR 合并指标
 (30 天内没有已合并 PR)

描述

Hi guys and thank you for the great work!

I'm trying to set up pleroma with this docker repo and it seems to work but I have a problem, when I go to password reset it says

Selection_048

So I'm the admin, how do I enable password reset?

I also have problem, when I go to registration by invite the client(UI) doesn't say anything but in console I see 403 always, I feel like all of this a re somehow connected, do you know is something is off in my config?

My secret.esx example

use Mix.Config

config :pleroma, Pleroma.Web.Endpoint,
   http: [ ip: {0, 0, 0, 0}, ],
   url: [host: "***************", scheme: "https", port: 443],
   secret_key_base: "***************"

config :pleroma, :instance,
  name: "***************",
  email: "***************",
  limit: 5000,
  registrations_open: false,
  invites_enabled: true,
  federating: true

# Configure your database
config :pleroma, Pleroma.Repo,
  adapter: Ecto.Adapters.Postgres,
  username: "pleroma",
  password: "pleroma",
  database: "pleroma",
  hostname: "***************",
  pool_size: 10

config :pleroma, :rate_limit,
  password_reset: 60

config :web_push_encryption, :vapid_details,
  subject: "mailto:***************",
  public_key: "***************",
  private_key: "***************"


贡献者指南