diff --git a/README.md b/README.md index 50d3df1..2538856 100644 --- a/README.md +++ b/README.md @@ -44,6 +44,44 @@ else make debian ``` +## Installing the **localserver** + +First install the package, replace "site" with your real site. + +```bash +dpkg -i +apt install -f +``` + +Next create /etc/lql-api/`site`, with the following contents: + +```bash +LISTEN="localhost:8080" +DEBUG="-d" +``` + +Now you can start the lql-api + +```bash +systemctl start lql-api@ +``` + +Next create an apache proxy for it in /etc/apache2/conf-available/zzzz_`site`_lql-api.conf + +```apache + + + Order allow,deny + allow from all + + + /lql-api/> + ProxyPass http://127.0.0.1:8080/ retry=0 timeout=120 + ProxyPassReverse http://127.0.0.1:8080/ + + +``` + ## License MIT - Copyright 2020 by Webmeisterei GmbH