-
Notifications
You must be signed in to change notification settings - Fork 30
Libki server performance configuration
Kyle M Hall edited this page Feb 9, 2016
·
1 revision
- Clone Libki server from git
- Install and configure Libki server
- Install starman
- Install apache2 and mod_proxy
- 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
- Make the init script start at runtime with "update-rc.d defaults"
- 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>
- Restart Apache
- Start the Libki server
#!bash
/etc/init.d/libki start
- Browse to your http://your.server.url/administration, you should get the admin login screen!