A deep dive into Mastodon

NGINX Configuration

Mastodon comes with a sample configuration file that you can copy over for NGINX to use. So set up your sites directory for NGINX:

mkdir /etc/nginx/sites-available

and copy it over:

cp /home/mastodon/live/dist/nginx.conf /etc/nginx/sites-available/mastodon

You will also have to enable it by creating a soft link in the nginx/sites-enabled directory:

mkdir /etc/nginx/sites-enabled
ln -s /etc/nginx/sites-available/mastodon /etc/nginx/sites-enabled/mastodon

Edit the file to adapt it to your instance (see Listing 5), and add the following line:

include /etc/nginx/sites-enabled/*;

in the /etc/nginx/nginx.conf file within the http section.

Listing 5

Mastodon NGINX Site File

.
.
.
server {
 listen 80;
 listen [::]:80;
server_name [your domain here];
 root /home/mastodon/live/public;
 location /.well-known/acme-challenge/ { allow all; }
 location / { return 301 https://$host$request_uri; }
}
.
.
.

When you visit your page, you should see an error screen with an angry mammoth bashing a keyboard (Figure 12).

Figure 12: An angry mammoth banging a keyboard is really good news.

Don't panic! This is really good news. The error is there because you still have to start the Mastodon services. To get everything up and running, Mastodon starts three services: Sidekiq, for Ruby jobs Mastodon has to run in the background; Streaming for the feeds; and the Web service.

To start the services, use systemd. Copy over the Mastodon service files to systemd's service folder:

cp /home/mastodon/live/dist/mastodon-*.service /etc/systemd/system/

and start and enable Mastodon's services:

systemctl daemon-reload
systemctl enable --now mastodon-web mastodon-sidekiq mastodon-streaming

You are done! Reload your Mastodon, and happy tooting.

Post Install Setup

You can now log in using the email you set up and the password that was provided during the Mastodon configuration step.

Visiting Preferences as admin will show you a bunch of settings not available to regular users. With your newly running instance, probably the most important section is Administration, and, under that, the Server Settings subsection. There you can change the name of the server, define who can register, and configure other settings.

Another important consideration is the set of rules you apply on your site. You can define rules against harassment, hate speech, toots about billionaire owners of competing platforms, and so on, by visiting Administration | Server rules.

To make sure rules are followed, visit the Moderation section, where you will be able to check reports from users, set up accounts with special roles (moderator, admin, owner), block certain domains from federating with your instance, and more.

There are many more options, of course, but most are self-explanatory. That said, if you need more information, your best source is the Mastodon docs themselves [13]. Federating with other instances it is more or less automatic: Find a user on another server you would like to follow, for example mailto:@linuxmagazine@fosstodon.org, and follow them. Bam! You're federated.

Conclusion

Despite the length of this article, there is more, much more, to Mastodon. How could there not be? At this moment of writing, Mastodon is just shy of 9 million accounts and has added 50 thousand new users in the past 24 hours. The landscape is constantly shifting, and new features are continually added to the platform.

This article will get you off to a good start, but be prepared to explore Mastodon and the Fediverse with an open mind, because tomorrow you will find exciting new things to play with.

Infos

  1. Mastodon: https://joinmastodon.org/
  2. Cory Doctorow, "Tiktok's enshittification":https://pluralistic.net/2023/01/21/potemkin-ai/
  3. ActivityPub: https://activitypub.rocks/
  4. Linux Magazine on Mastodon: https://fosstodon.org/@linuxmagazine
  5. A curated list of Mastodon servers: https://joinmastodon.org/servers
  6. William Shatner (yes, that William Shatner) uncovers a flaw in Mastodon: https://twitter.com/WilliamShatner/status/1218176903107895296
  7. WPCode for WordPress: https://wordpress.org/plugins/insert-headers-and-footers/
  8. Pixelfed: https://pixelfed.org/
  9. PeerTube: https://joinpeertube.org/
  10. Mastodon mobile apps: https://joinmastodon.org/apps
  11. Fedilab Mastodon client: https://f-droid.org/en/packages/fr.gouv.etalab.mastodon/
  12. Fail2Ban: http://fail2ban.org/wiki/index.php/Main_Page
  13. Mastodon docs: https://docs.joinmastodon.org/

Buy this article as PDF

Express-Checkout as PDF
Price $2.95
(incl. VAT)

Buy Linux Magazine

SINGLE ISSUES
 
SUBSCRIPTIONS
 
TABLET & SMARTPHONE APPS
Get it on Google Play

US / Canada

Get it on Google Play

UK / Australia

Related content

  • Social Skills

    Creating a custom application that toots text to Mastodon (the Fediverse's version of Twitter) is simple and straightforward. But we can mix it up by adding images and video, scheduling posts, and changing privacy settings.

  • Mastodon Clients Post Line

    The open and simple Mastodon API makes it easy to create applications to interact with this federated microblogging platform. Here are some of the clients that the community has come up with and how you can use them.

  • toot

    If you are looking for a Twitter alternative, toot lets you interact with Mastodon from the command line.

  • Tutorial – Fediverse

    If you're looking for social media options where the user has more control, you'll find a range of options to explore in the Fediverse, including the popular Mastodon.

  • Status Quo

    Creating your own clients to interact with your friends in the Fediverse is easy. A bit of Python and an off-the-shelf module will do the trick.

comments powered by Disqus
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters

Support Our Work

Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.

Learn More

News