Update README

This commit is contained in:
Niels Andriesse 2021-04-08 13:51:55 +10:00 committed by GitHub
parent 5cb6d75a92
commit 0bdb40aad6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 1 deletions

View File

@ -8,11 +8,21 @@ Want to build from source? See [BUILDING.md](https://github.com/nielsandriesse/s
## Installation Instructions
1. Pull in the Session open group server executable:
`apt-get session-open-group-server`
2. Create a X25519 key pair for your server:
```
apt-get session-open-group-server
mkdir /usr/local/session-open-group-server
openssl genpkey -algorithm x25519 -out /usr/local/session-open-group-server/x25519_private_key.pem
openssl pkey -in x25519_private_key.pem -pubout -out /usr/local/session-open-group-server/x25519_public_key.pem
```
3. Start the server:
```
systemctl enable session-open-group-server.service
systemctl start session-open-group-server.service
```