angristan / docker-pleroma

Docker image for the Pleroma federated social network
https://git.pleroma.social/pleroma/pleroma/
MIT License
348 stars 75 forks source link

About configuration #27

Open shekspir55 opened 3 years ago

shekspir55 commented 3 years ago

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: "***************"
silvernode commented 1 year ago

I also cannot off password resets, it says password reset disabled. I can;t fine a config option in the official config example that makes sense to enable it.