From ee5bd0998b1822fad6d5d1036a441d7ded09a494 Mon Sep 17 00:00:00 2001 From: krateng Date: Wed, 28 Nov 2018 13:46:58 +0100 Subject: [PATCH] Update README.md --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index 820b253..e6feb1b 100644 --- a/README.md +++ b/README.md @@ -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; + }