angristan/docker-pleroma

About configuration

Open

#27 opened on May 9, 2021

View on GitHub
 (1 comment) (0 reactions) (0 assignees)Elixir (82 forks)github user discovery
help wanted

Repository metrics

Stars
 (376 stars)
PR merge metrics
 (No merged PRs in 30d)

Description

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: "***************"


Contributor guide