pleroma/docs/administration/CLI_tasks/relay.md

34 lines
530 B
Markdown
Raw Normal View History

2019-10-03 08:10:31 +02:00
# Managing relays
{! backend/administration/CLI_tasks/general_cli_task_info.include !}
2019-10-03 08:10:31 +02:00
## Follow a relay
```sh tab="OTP"
./bin/pleroma_ctl relay follow <relay_url>
2019-10-03 08:10:31 +02:00
```
```sh tab="From Source"
mix pleroma.relay follow <relay_url>
2019-10-03 08:10:31 +02:00
```
## Unfollow a remote relay
```sh tab="OTP"
./bin/pleroma_ctl relay unfollow <relay_url>
2019-10-03 08:10:31 +02:00
```
```sh tab="From Source"
mix pleroma.relay unfollow <relay_url>
2019-10-03 08:10:31 +02:00
```
## List relay subscriptions
```sh tab="OTP"
./bin/pleroma_ctl relay list
```
```sh tab="From Source"
mix pleroma.relay list
2019-10-03 08:10:31 +02:00
```