Jump to content

Fediverse relays: Difference between revisions

m
Line 78: Line 78:
== How to install your own Fediverse relay for beginners ==
== How to install your own Fediverse relay for beginners ==


Soon as I get a relay running myself I'll write a guide for absolute beginners here.<br>
I'm going to write a guide on how to install Activity-Relay for beginners, but first I have to manage to install it myself.<br>
Until then here are just a few links:
Here is how far I've come


https://github.com/yukimochi/Activity-Relay/wiki/01.-Install
==== Create a server ====
 
To be written
 
==== Log in to your server ====
 
To be written
 
==== Install dependencies ====
 
Dependencies are apps you need to install before you can install the app you want.
 
1. sudo apt install vim
* confirm with yes when asked
2. sudo apt install git
* confirm with yes when asked
3. sudo apt install docker
* confirm with yes when asked
4. sudo apt install docker-compose
* confirm with yes when asked
 
==== Install the relay with docker ====
 
Now you need to copy the app to your server
 
1. git clone https://github.com/yukimochi/Activity-Relay.git -b v1.0.0
2. vim config.yml
* make the file look like [https://github.com/yukimochi/Activity-Relay#yaml-format this].
* openssl genrsa | tee actor.pem
* chmod 600 actor.pem
 
====