-#Install tiny thttpd web server.
+## Install tiny thttpd web server. ##
https://acme.com/software/thttpd/
#
#
+
+## Run using Lightthpd Web Server
+Modify the the config file, lighttpd.conf. To suit the path where you pulled the git repository, of LifeLog.
+With:
+git clone https://github.com/wbudic/LifeLog.git
+
+
+
#Install cpanm to make installing other modules easier (you'll thank us later).
You need to type these commands into a Terminal emulator (Mac OS X, Win32, Linux)
sudo apt install cpanminus
--- /dev/null
+server.document-root = "/home/will/dev/lighttpd/LifeLog/htdocs"
+
+server.port = 3000
+
+mimetype.assign = (
+ ".html" => "text/html",
+ ".txt" => "text/plain",
+ ".jpg" => "image/jpeg",
+ ".png" => "image/png",
+ ".css" => "text/css",
+ ".js" => "text/javascript"
+)
+
+server.modules = (
+"mod_access",
+"mod_accesslog",
+"mod_auth",
+"mod_expire",
+"mod_compress",
+"mod_redirect",
+"mod_setenv",
+"mod_rewrite",
+"mod_alias",
+"mod_cgi"
+)
+
+
+index-file.names = ( "index.html" )
+server.breakagelog = "/home/will/dev/lighttpd/breakage.log"
+cgi.assign = ( ".pl" => "/usr/bin/perl", ".cgi" => "/usr/bin/perl" )
+cgi.x-sendfile = "disable"
+
+
--- /dev/null
+#!/bin/bash
+lighttpd -D -f lighttpd.conf