Wiki

Clone wiki

libki-server / Libki Server Installation ( Performance )

  1. Clone Libki server from git
  2. Install and configure Libki server
  3. Install starman
  4. Install apache2 and mod_proxy
  5. Copy init-script-template to /etc/init.d/libki ( or libki-<instance> if you are running multiple instances on one server ), update the template for your specific paths and names
  6. Make the init script start at runtime with "update-rc.d <init-script-filename> defaults"
  7. Create or edit an apache config file and add the following contents:

#!apache

<VirtualHost *:80>
    ServerName your.server.url

    DocumentRoot /home/libki/Libki # Change this if to your Libki git clone path

    <Proxy *>
        Order deny,allow
        Allow from allow
    </Proxy>

    ProxyPass        / http://localhost:4000/ retry=0
    ProxyPassReverse / http://localhost:4000/ retry=0
</VirtualHost>
9. Restart Apache 10. Start the Libki server

#!bash

/etc/init.d/libki start
11. Browse to your http://your.server.url/administration, you should get the admin login screen!

Updated