uncia/uncia/frontend/templates/faq.haml

45 lines
1.6 KiB
Plaintext

- extends "base.html"
- set title = 'Faq'
- block content
%div{'class': 'section'}
%h2{'class': 'title'} What is a relay?
It is an optional component to the fediverse that forwards all public posts to every instance connected to it. This allows smaller and single-user instances to populate an otherwise slow fedi timeline
%div{'class': 'section'}
%h2{'class': 'title'} How do I join one?
If it isn't obvious, you must be an admin of the instance you wanna add the relay to.<br><br>
%b Mastodon:
%a{'href': 'https://{{config.host}}/inbox'}
https://{{config.host}}/inbox
%br
%br
Copy the above url, enter your domain in the box below, click "Go to Relay Settings", and paste the relay url into the box on the New Relay page. If you wanna be sure it was enabled, wait 5 sec and reload the page.<br><br>
%form{'id': 'form', 'action': '/faq', 'method': 'post'}
Domain:
%input{'type': 'url', 'name': 'domain', 'placeholder': 'ex. barkshark.xyz'}
%input{'type': 'submit', 'value': 'Go to Relay Settings'}
%br
%br
%b Pleroma:
%a{'href': 'https://{{config.host}}/actor'}
https://{{config.host}}/actor
%br
%br
In a terminal window, cd to your pleroma dir and run the following command
%br
%ul
%li
MIX_ENV=prod mix pleroma.relay follow https://{{config.host}}/actor
- if config.require_approval
Note: This relay requires approval from the admin, so it will show as "Waiting for relay's approvel" in Mastodon until accepted.
- if config.rules
%div{'class': 'section'}
%h2{'class': 'title'} What are the rules?
{{markdown(config.rules)}}