Skip to content

Libki server performance configuration

Kyle M Hall edited this page Feb 9, 2016 · 1 revision
  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- 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 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>
  1. Restart Apache
  2. Start the Libki server
#!bash

/etc/init.d/libki start

  1. Browse to your http://your.server.url/administration, you should get the admin login screen!

Clone this wiki locally