- The database (PostgreSQL) will store the users and posts of the server, as well as information about other servers, their users and posts too
- The media storage (often S3-compatible object storage) stores user-uploaded attachments like images or videos, user profile photos (avatars) and profile header images
- The server stores the state of background tasks in queues (Redis)
The database is the most important of the data, as well as some of the media storage, though it includes some cache data that can be recreated.
Redis data is important to keep, as losing the queue data might drop some recent posts or federation of data that hasn’t yet completed.

