So I had a go, in my amateur fashion:
http://176.126.244.114:8088
...should give you a mirror of what I found at
https://github.com/darkcoin/darkcoin.io, which I suspect is out of date, but it demonstrates the concept.
Hopefully someone can confirm it works, and tell me where to get the latest website git copy?
Here's the steps, I'm sure there's a dozen better ways but this isn't my day job:
# log into your VPS and add a server user
ssh
[email protected]
adduser server
passwd server
# you may or may not have to manually make a home directory for the new user
mkdir /home/server
chown server server
# install dependencies
apt-get update
apt-get install build-essential
apt-get install rcs libpcre3-dev libexpat1-dev libssl-dev libgeoip-dev zlib1g-dev libxml2 libxml2-dev libpng-dev openssl git
# get openlightspeed and install it
cd /home/server
wget
http://open.litespeedtech.com/packages/openlitespeed-1.3.6.tgz
tar xfvz openlitespeed-1.3.6.tgz
cd openlitespeed-1.3.6
make && make install
# modify your firewall to allow access to ports 8088 and 7080
ufw allow 8088/tcp
ufw allow 7080/tcp
#start openlightspeed server
/usr/local/lsws/bin/lswsctrl start
# from your browser, check it is running - point your browser at 1.2.3.4:8088
# from your browser, change the default admin password
- got to
https://1.2.3.4:7080
- log in as admin, user admin password 123456
- click on webadmin console thingy (bottom left)
- click on webadmin console security tab
- click on admin user (bottom left) and change password
# back at the terminal, change to default server directory
cd /usr/local/lsws/DEFAULT/html
mv index.html backupindex.html
# get copy of darkcoin.io website and copy it out into cwd (obviously I can't wget -m it as it's down right now)
git clone
https://github.com/darkcoin/darkcoin.io
cp -R darkcoin.io/* .