X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;ds=sidebyside;f=README.md;h=b9449ad8682bf392aecb34cf1a6e45454bd7d0b3;hb=0300bc5569a6fd8b728659dc5198896d25f41c80;hp=79ce2d19f6af282d8b6bd2d68b81b2683550eaed;hpb=658c4754ff2e1ce91f020af193f8c7a9d5ef4df2;p=akkoma diff --git a/README.md b/README.md index 79ce2d19f..b9449ad86 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ No release has been made yet, but several servers have been online for months al ### Dependencies * Postgresql version 9.6 or newer -* Elixir version 1.4 or newer (you will also need erlang-dev, erlang-parsetools, erlang-xmerl packages) +* Elixir version 1.5 or newer * Build-essential tools ### Configuration @@ -53,9 +53,21 @@ Run `mix phx.server` in repository's root, it will output log into stdout/stderr ### Using an upstream proxy for federation -Add the following to your `dev.secret.exs` if you want to proxify all http requests that pleroma makes to an upstream proxy server: +Add the following to your `dev.secret.exs` or `prod.secret.exs` if you want to proxify all http requests that pleroma makes to an upstream proxy server: config :pleroma, :http, proxy_url: "127.0.0.1:8123" This is useful for running pleroma inside Tor or i2p. + +## Admin Tasks + +### Password reset + +Run `mix generate_password_reset username` to generate a password reset link that you can then send to the user. + +### Moderators + +You can make users moderators. They will then be able to delete any post. + +Run `mix set_moderator username [true|false]` to make user a moderator or not.