aboutsummaryrefslogtreecommitdiff
path: root/docs/administration/CLI_tasks/relay.md
blob: c4f078f4d1a2f4a5b3f037d67bca3829c92610dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Managing relays

{! backend/administration/CLI_tasks/general_cli_task_info.include !}

## Follow a relay

```sh tab="OTP"
./bin/pleroma_ctl relay follow <relay_url>
```

```sh tab="From Source"
mix pleroma.relay follow <relay_url>
```

## Unfollow a remote relay

```sh tab="OTP"
./bin/pleroma_ctl relay unfollow <relay_url>
```

```sh tab="From Source"
mix pleroma.relay unfollow <relay_url>
```

## List relay subscriptions

```sh tab="OTP"
./bin/pleroma_ctl relay list
```

```sh tab="From Source"
mix pleroma.relay list
```