Skip to content

Edit the "About" section

Users that are not logged in will see an About section on the front page of of wanderer. You can completely customize this section to give users important information about your specific instance.

About

The content of the About section is written in Markdown. E.g. the default content that you see above looks as follows:

Welcome to wanderer, a self-hosted service for managing and sharing your outdoor adventures.
With wanderer you can:
- Upload and store your GPS tracks (GPX files)
- Organize routes with descriptions, waypoints, photos, and tags
- Search and filter through your personal trail library
- Optionally connect with other wanderer instances via ActivityPub to share tracks across the Fediverse
- And much more
wanderer is designed for explorers who value privacy, control, and open technology.

Depending on how you installed wanderer the process of editing the content looks slightly different:

  1. Open your docker-compose.yml file.
  2. Find the volumes section of the web container.
  3. Look for the following line (it is commented out by default):
- ./data/about.md:/app/build/client/md/about.md
  1. Uncomment the line (remove the # at the beginning, if present).
  2. Make sure the left-hand side (./data/about.md) points to a valid Markdown file on your host machine.
  3. Save your changes and restart the container:
Terminal window
docker compose restart web
  1. Whatever you put in that Markdown file will now appear in the About section.
  1. Navigate to the web/build/client/md/ directory.
  2. Open the file about.md in your text editor of choice.
  3. Replace the contents with your own Markdown text.
  4. Save the file.
  5. No rebuild is required — the file is loaded dynamically at runtime.