A keyring API for sharing jabber fingerprints with friends.
Go to file
Mal a7d9c0bf51 Moved to folder backend 2020-08-19 21:06:45 +02:00
api/v1 Moved to folder backend 2020-08-19 21:06:45 +02:00
backend Moved to folder backend 2020-08-19 21:06:45 +02:00
data/classes/controller Moved to folder backend 2020-08-19 21:06:45 +02:00
docs/api Init 2020-08-17 23:46:58 +02:00
.gitignore Moved to folder backend 2020-08-19 21:06:45 +02:00
Makefile Init 2020-08-17 23:46:58 +02:00
README.md Readme added 2020-08-19 14:21:35 +02:00
index.php Moved to folder backend 2020-08-19 21:06:45 +02:00

README.md

Ringfinger

A restfull keyring API with web UI to share your jabber fingerprints with the people you want.

Create an account, store your jabber fingerprints and share it with your friends. There is no need to type in your 64 chars long fingerprint for each of your friends. Just enter it once and decide which people you want to share your keyring with.

Setup

Clone or copy the ringfinger folder to the location folder of your webserver. Move into the ringfinger folder an generate the cache:

make build

Webserver configuration

Despite your basic setup with PHP and MySQL/MariaDB your webserver has to to rewrite all requests that access the path /ringfinger/api/v1/... to /ringfinger/api/v1/index.php to make the API working.

NGINX

Add the following line to your nginx.conf or to a separate file that will be included by the nginx.conf:

rewrite /ringfinger/api/v1/.* /ringfinger/api/v1/index.php;

Also make sure you deny the access to /ringfinger/data for all!