1
0
mirror of https://github.com/krateng/maloja.git synced 2023-08-10 21:12:55 +03:00

Update README.md

This commit is contained in:
krateng 2018-11-28 13:46:58 +01:00 committed by GitHub
parent 026404205a
commit ee5bd0998b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,3 +23,15 @@ I like to name my projects after regions in Grisons, Switzerland. Don't waste yo
## Current status
Deep in development. I just uploaded Maloja here in case I die tomorrow. It can accept scrobbles and return some basic stats in JSON format so far.
## How to install
I wouldn't recommend it yet. But if you want to test Maloja, it's fairly easy:
1) Put it anywhere and start server.py
2) (Recommended) Put your server behind a reverse proxy for SSL encryption. Configure that proxy to rewrite /db/ requests to the database port. In nginx this would look as follows:
location /db {
rewrite ^/db(.*)$ $1 break;
proxy_pass http://yoururl:12349;
}