mastoGem/README.md

15 lines
227 B
Markdown

# MastoGem : a Mastodon proxy for Gemini
## Build
```
$ go build
```
## Generate key and certificate
```
$ openssl genrsa -out key.rsa 4096
$ openssl req -x509 -key key.rsa -out cert.pem -days 365 -subj "/CN=localhost"
```