2017-01-22 09:50:40 +01:00
Administration guide
2017-02-13 20:41:48 +01:00
====================
2017-01-22 09:50:40 +01:00
So, you have a working Mastodon instance... now what?
2017-02-13 20:41:48 +01:00
## Turning into an admin
The following rake task:
2017-04-08 00:31:50 +02:00
RAILS_ENV=production bundle exec rails mastodon:make_admin USERNAME=alice
2017-02-13 20:41:48 +01:00
Would turn the local user "alice" into an admin.
2017-01-22 09:50:40 +01:00
## Administration web interface
A user that is designated as `admin = TRUE` in the database is able to access a suite of administration tools:
* View, edit, silence, or suspend users - https://yourmastodon.instance/admin/accounts
* View PubSubHubbub subscriptions - https://yourmastodon.instance/admin/pubsubhubbub
* View domain blocks - https://yourmastodon.instance/admin/domain_blocks
* Sidekiq dashboard - https://yourmastodon.instance/sidekiq
* PGHero dashboard for PostgreSQL - https://yourmastodon.instance/pghero
* Edit site settings - https://yourmastodon.instance/admin/settings
## Site settings
Your site settings are stored in the `settings` database table, and editable through the admin interface at https://yourmastodon.instance/admin/settings.
You are able to set the following settings:
2017-02-13 20:41:48 +01:00
- Site title
2017-01-22 09:50:40 +01:00
- Contact username
- Contact email
- Site description
- Site extended description
2017-02-13 20:41:48 +01:00
You may wish to use the extended description (shown at https://yourmastodon.instance/about/more ) to display content guidelines or a user agreement (see https://mastodon.social/about/more for an example).
2017-04-09 01:09:46 +02:00
## Confirming Users Manually
The following rake task:
RAILS_ENV=production bundle exec rails mastodon:confirm_email USER_EMAIL=alice@alice.com
Will confirm a user manually, in case they don't have access to their confirmation email for whatever reason.
2017-04-17 02:07:34 +02:00
## Clearing Unconfirmed Users Manually
RAILS_ENV=production rake mastodon:users:clear
Will remove users that never confirmed their e-mail and never signed in, meaning they
only have a user record and an avatar record, with no files uploaded.